From 05e294fc81f354be9796608408a7ffc5f652fc16 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 29 Dec 2023 00:51:57 -0800 Subject: [PATCH 01/33] Fix URL validation of empty string --- src/documents/serialisers.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index 62e7d75b4..b6be62d9b 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -494,7 +494,11 @@ class CustomFieldInstanceSerializer(serializers.ModelSerializer): """ data = super().validate(data) field: CustomField = data["field"] - if field.data_type == CustomField.FieldDataType.URL: + if ( + field.data_type == CustomField.FieldDataType.URL + and data["value"] is not None + and len(data["value"]) > 0 + ): URLValidator()(data["value"]) return data From cf869b13568191183d12cf5fecaf4356302ffba9 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 29 Dec 2023 09:19:45 -0800 Subject: [PATCH 02/33] Fix: type casting of db values for shared by me filter (#5155) --- src/documents/filters.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/documents/filters.py b/src/documents/filters.py index 0f49c7c27..c63484ee2 100644 --- a/src/documents/filters.py +++ b/src/documents/filters.py @@ -1,7 +1,9 @@ from django.contrib.contenttypes.models import ContentType +from django.db.models import CharField from django.db.models import Count from django.db.models import OuterRef from django.db.models import Q +from django.db.models.functions import Cast from django_filters.rest_framework import BooleanFilter from django_filters.rest_framework import Filter from django_filters.rest_framework import FilterSet @@ -119,7 +121,7 @@ class SharedByUser(Filter): num_shared_users=Count( UserObjectPermission.objects.filter( content_type=ctype, - object_pk=OuterRef("pk"), + object_pk=Cast(OuterRef("pk"), CharField()), ).values("user_id"), ), ) @@ -127,7 +129,7 @@ class SharedByUser(Filter): num_shared_groups=Count( GroupObjectPermission.objects.filter( content_type=ctype, - object_pk=OuterRef("pk"), + object_pk=Cast(OuterRef("pk"), CharField()), ).values("group_id"), ), ) From da058b915b0606ca935da0eca79559b3946c6fe7 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 29 Dec 2023 14:45:29 -0800 Subject: [PATCH 03/33] Enhancement: improve validation of custom field values (#5166) * Support all URI schemes * Reworks custom field value validation to check and return a 400 error code in more cases and support more URL looking items, not just some basic schemes * Fixes a spelling error in the message --------- Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com> --- src/documents/serialisers.py | 34 +++-- src/documents/tests/test_api_custom_fields.py | 134 ++++++++++++++++-- src/documents/validators.py | 29 ++++ 3 files changed, 173 insertions(+), 24 deletions(-) create mode 100644 src/documents/validators.py diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index b6be62d9b..c07b00f78 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -2,6 +2,7 @@ import datetime import math import re import zoneinfo +from decimal import Decimal import magic from celery import states @@ -9,7 +10,9 @@ from django.conf import settings from django.contrib.auth.models import Group from django.contrib.auth.models import User from django.contrib.contenttypes.models import ContentType -from django.core.validators import URLValidator +from django.core.validators import DecimalValidator +from django.core.validators import MaxLengthValidator +from django.core.validators import integer_validator from django.utils.crypto import get_random_string from django.utils.text import slugify from django.utils.translation import gettext as _ @@ -41,6 +44,7 @@ from documents.models import UiSettings from documents.parsers import is_mime_type_supported from documents.permissions import get_groups_with_only_permission from documents.permissions import set_permissions_for_object +from documents.validators import uri_validator # https://www.django-rest-framework.org/api-guide/serializers/#example @@ -489,17 +493,29 @@ class CustomFieldInstanceSerializer(serializers.ModelSerializer): def validate(self, data): """ - For some reason, URLField validation is not run against the value - automatically. Force it to run against the value + Probably because we're kind of doing it odd, validation from the model + doesn't run against the field "value", so we have to re-create it here. + + Don't like it, but it is better than returning an HTTP 500 when the database + hates the value """ data = super().validate(data) field: CustomField = data["field"] - if ( - field.data_type == CustomField.FieldDataType.URL - and data["value"] is not None - and len(data["value"]) > 0 - ): - URLValidator()(data["value"]) + if "value" in data and data["value"] is not None: + if ( + field.data_type == CustomField.FieldDataType.URL + and len(data["value"]) > 0 + ): + uri_validator(data["value"]) + elif field.data_type == CustomField.FieldDataType.INT: + integer_validator(data["value"]) + elif field.data_type == CustomField.FieldDataType.MONETARY: + DecimalValidator(max_digits=12, decimal_places=2)( + Decimal(str(data["value"])), + ) + elif field.data_type == CustomField.FieldDataType.STRING: + MaxLengthValidator(limit_value=128)(data["value"]) + return data def reflect_doclinks( diff --git a/src/documents/tests/test_api_custom_fields.py b/src/documents/tests/test_api_custom_fields.py index 15abcd053..690e92690 100644 --- a/src/documents/tests/test_api_custom_fields.py +++ b/src/documents/tests/test_api_custom_fields.py @@ -333,19 +333,17 @@ class TestCustomField(DirectoriesMixin, APITestCase): }, format="json", ) - from pprint import pprint - pprint(resp.json()) self.assertEqual(resp.status_code, status.HTTP_400_BAD_REQUEST) self.assertEqual(CustomFieldInstance.objects.count(), 0) self.assertEqual(len(doc.custom_fields.all()), 0) - def test_custom_field_value_validation(self): + def test_custom_field_value_url_validation(self): """ GIVEN: - Document & custom field exist WHEN: - - API request to set a field value + - API request to set a field value to something which is or is not a link THEN: - HTTP 400 is returned - No field instance is created or attached to the document @@ -360,31 +358,62 @@ class TestCustomField(DirectoriesMixin, APITestCase): name="Test Custom Field URL", data_type=CustomField.FieldDataType.URL, ) - custom_field_int = CustomField.objects.create( - name="Test Custom Field INT", - data_type=CustomField.FieldDataType.INT, - ) + for value in ["not a url", "file:"]: + with self.subTest(f"Test value {value}"): + resp = self.client.patch( + f"/api/documents/{doc.id}/", + data={ + "custom_fields": [ + { + "field": custom_field_url.id, + "value": value, + }, + ], + }, + format="json", + ) + + self.assertEqual(resp.status_code, status.HTTP_400_BAD_REQUEST) + self.assertEqual(CustomFieldInstance.objects.count(), 0) + self.assertEqual(len(doc.custom_fields.all()), 0) resp = self.client.patch( f"/api/documents/{doc.id}/", data={ "custom_fields": [ { "field": custom_field_url.id, - "value": "not a url", + "value": "tel:+1-816-555-1212", }, ], }, format="json", ) - self.assertEqual(resp.status_code, status.HTTP_400_BAD_REQUEST) - self.assertEqual(CustomFieldInstance.objects.count(), 0) - self.assertEqual(len(doc.custom_fields.all()), 0) + self.assertEqual(resp.status_code, status.HTTP_200_OK) - self.assertRaises( - Exception, - self.client.patch, + def test_custom_field_value_integer_validation(self): + """ + GIVEN: + - Document & custom field exist + WHEN: + - API request to set a field value to something not an integer + THEN: + - HTTP 400 is returned + - No field instance is created or attached to the document + """ + doc = Document.objects.create( + title="WOW", + content="the content", + checksum="123", + mime_type="application/pdf", + ) + custom_field_int = CustomField.objects.create( + name="Test Custom Field INT", + data_type=CustomField.FieldDataType.INT, + ) + + resp = self.client.patch( f"/api/documents/{doc.id}/", data={ "custom_fields": [ @@ -397,6 +426,81 @@ class TestCustomField(DirectoriesMixin, APITestCase): format="json", ) + self.assertEqual(resp.status_code, status.HTTP_400_BAD_REQUEST) + self.assertEqual(CustomFieldInstance.objects.count(), 0) + self.assertEqual(len(doc.custom_fields.all()), 0) + + def test_custom_field_value_monetary_validation(self): + """ + GIVEN: + - Document & custom field exist + WHEN: + - API request to set a field value to something not a valid monetary decimal + THEN: + - HTTP 400 is returned + - No field instance is created or attached to the document + """ + doc = Document.objects.create( + title="WOW", + content="the content", + checksum="123", + mime_type="application/pdf", + ) + custom_field_money = CustomField.objects.create( + name="Test Custom Field MONETARY", + data_type=CustomField.FieldDataType.MONETARY, + ) + + resp = self.client.patch( + f"/api/documents/{doc.id}/", + data={ + "custom_fields": [ + { + "field": custom_field_money.id, + # Too many places past decimal + "value": 12.123, + }, + ], + }, + format="json", + ) + + self.assertEqual(resp.status_code, status.HTTP_400_BAD_REQUEST) + self.assertEqual(CustomFieldInstance.objects.count(), 0) + self.assertEqual(len(doc.custom_fields.all()), 0) + + def test_custom_field_value_short_text_validation(self): + """ + GIVEN: + - Document & custom field exist + WHEN: + - API request to set a field value to a too long string + THEN: + - HTTP 400 is returned + - No field instance is created or attached to the document + """ + doc = Document.objects.create( + title="WOW", + content="the content", + checksum="123", + mime_type="application/pdf", + ) + custom_field_string = CustomField.objects.create( + name="Test Custom Field STRING", + data_type=CustomField.FieldDataType.STRING, + ) + + resp = self.client.patch( + f"/api/documents/{doc.id}/", + data={ + "custom_fields": [ + {"field": custom_field_string.id, "value": "a" * 129}, + ], + }, + format="json", + ) + + self.assertEqual(resp.status_code, status.HTTP_400_BAD_REQUEST) self.assertEqual(CustomFieldInstance.objects.count(), 0) self.assertEqual(len(doc.custom_fields.all()), 0) diff --git a/src/documents/validators.py b/src/documents/validators.py new file mode 100644 index 000000000..0ebf15697 --- /dev/null +++ b/src/documents/validators.py @@ -0,0 +1,29 @@ +from urllib.parse import urlparse + +from django.core.exceptions import ValidationError +from django.utils.translation import gettext_lazy as _ + + +def uri_validator(value) -> None: + """ + Raises a ValidationError if the given value does not parse as an + URI looking thing, which we're defining as a scheme and either network + location or path value + """ + try: + parts = urlparse(value) + if not parts.scheme: + raise ValidationError( + _(f"Unable to parse URI {value}, missing scheme"), + params={"value": value}, + ) + elif not parts.netloc and not parts.path: + raise ValidationError( + _(f"Unable to parse URI {value}, missing net location or path"), + params={"value": value}, + ) + except Exception as e: + raise ValidationError( + _(f"Unable to parse URI {value}"), + params={"value": value}, + ) from e From 061f33fb0516da84df8aca4575a2a17b2335a4d8 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Fri, 29 Dec 2023 15:42:56 -0800 Subject: [PATCH 04/33] Feature: Allow setting backend configuration settings via the UI (#5126) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Saving some start on this * At least partially working for the tesseract parser * Problems with migration testing need to figure out * Work around that error * Fixes max m_pixels * Moving the settings to main paperless application * Starting some consumer options * More fixes and work * Fixes these last tests * Fix max_length on OcrSettings.mode field * Fix all fields on Common & Ocr settings serializers * Umbrellla config view * Revert "Umbrellla config view" This reverts commit fbaf9f4be30f89afeb509099180158a3406416a5. * Updates to use a single configuration object for all settings * Squashed commit of the following: commit 8a0a49dd5766094f60462fbfbe62e9921fbd2373 Author: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue Dec 19 23:02:47 2023 -0800 Fix formatting commit 66b2d90c507b8afd9507813ff555e46198ea33b9 Author: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue Dec 19 22:36:35 2023 -0800 Refactor frontend data models commit 5723bd8dd823ee855625e250df39393e26709d48 Author: Adam Bogdał Date: Wed Dec 20 01:17:43 2023 +0100 Fix: speed up admin panel for installs with a large number of documents (#5052) commit 9b08ce176199bf9011a6634bb88f616846150d2b Author: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue Dec 19 15:18:51 2023 -0800 Update PULL_REQUEST_TEMPLATE.md commit a6248bec2d793b7690feed95fcaf5eb34a75bfb6 Author: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue Dec 19 15:02:05 2023 -0800 Chore: Update Angular to v17 (#4980) commit b1f6f52486d5ba5c04af99b41315eb6428fd1fa8 Author: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue Dec 19 13:53:56 2023 -0800 Fix: Dont allow null custom_fields property via API (#5063) commit 638d9970fd468d8c02c91d19bd28f8b0796bdcb1 Author: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue Dec 19 13:43:50 2023 -0800 Enhancement: symmetric document links (#4907) commit 5e8de4c1da6eb4eb8f738b20962595c7536b30ec Author: shamoon <4887959+shamoon@users.noreply.github.com> Date: Tue Dec 19 12:45:04 2023 -0800 Enhancement: shared icon & shared by me filter (#4859) commit 088bad90306025d3f6b139cbd0ad264a1cbecfe5 Author: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Tue Dec 19 12:04:03 2023 -0800 Bulk updates all the backend libraries (#5061) * Saving some work on frontend config * Very basic but dynamically-generated config form * Saving work on slightly less ugly frontend config * JSON validation for user_args field * Fully dynamic config form * Adds in some additional validators for a nicer error message * Cleaning up the testing and coverage more * Reverts unintentional change * Adds documentation about the settings and the precedence * Couple more commenting and style fixes --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/configuration.md | 5 + src-ui/src/app/app-routing.module.ts | 12 + src-ui/src/app/app.module.ts | 4 + .../admin/config/config.component.html | 54 ++++ .../admin/config/config.component.scss | 0 .../admin/config/config.component.spec.ts | 103 ++++++++ .../admin/config/config.component.ts | 163 ++++++++++++ .../app-frame/app-frame.component.html | 9 + .../common/input/number/number.component.html | 4 +- .../common/input/switch/switch.component.html | 27 ++ .../common/input/switch/switch.component.scss | 0 .../input/switch/switch.component.spec.ts | 39 +++ .../common/input/switch/switch.component.ts | 21 ++ .../common/input/text/text.component.html | 4 +- src-ui/src/app/data/paperless-config.ts | 183 ++++++++++++++ .../src/app/services/config.service.spec.ts | 42 ++++ src-ui/src/app/services/config.service.ts | 27 ++ src/documents/classifier.py | 4 +- src/documents/consumer.py | 2 +- .../management/commands/document_consumer.py | 2 +- .../management/commands/document_exporter.py | 5 + .../management/commands/loaddata_stdin.py | 2 +- src/documents/parsers.py | 11 +- src/documents/tests/test_consumer.py | 16 +- .../tests/test_management_exporter.py | 16 +- src/paperless/config.py | 88 +++++++ src/paperless/migrations/0001_initial.py | 180 ++++++++++++++ src/paperless/migrations/__init__.py | 0 src/paperless/models.py | 173 +++++++++++++ src/paperless/serialisers.py | 8 + src/paperless/settings.py | 70 +++--- src/paperless/urls.py | 2 + src/paperless/views.py | 13 +- src/paperless_mail/mail.py | 14 +- src/paperless_mail/parsers.py | 6 + src/paperless_tesseract/parsers.py | 90 ++++--- src/paperless_tesseract/tests/test_parser.py | 32 +-- .../tests/test_parser_custom_settings.py | 232 ++++++++++++++++++ src/paperless_text/parsers.py | 6 + src/paperless_tika/parsers.py | 19 +- src/setup.cfg | 1 + 41 files changed, 1570 insertions(+), 119 deletions(-) create mode 100644 src-ui/src/app/components/admin/config/config.component.html create mode 100644 src-ui/src/app/components/admin/config/config.component.scss create mode 100644 src-ui/src/app/components/admin/config/config.component.spec.ts create mode 100644 src-ui/src/app/components/admin/config/config.component.ts create mode 100644 src-ui/src/app/components/common/input/switch/switch.component.html create mode 100644 src-ui/src/app/components/common/input/switch/switch.component.scss create mode 100644 src-ui/src/app/components/common/input/switch/switch.component.spec.ts create mode 100644 src-ui/src/app/components/common/input/switch/switch.component.ts create mode 100644 src-ui/src/app/data/paperless-config.ts create mode 100644 src-ui/src/app/services/config.service.spec.ts create mode 100644 src-ui/src/app/services/config.service.ts create mode 100644 src/paperless/config.py create mode 100644 src/paperless/migrations/0001_initial.py create mode 100644 src/paperless/migrations/__init__.py create mode 100644 src/paperless/models.py create mode 100644 src/paperless_tesseract/tests/test_parser_custom_settings.py diff --git a/docs/configuration.md b/docs/configuration.md index 212508806..a7cf67bf9 100644 --- a/docs/configuration.md +++ b/docs/configuration.md @@ -3,6 +3,11 @@ Paperless provides a wide range of customizations. Depending on how you run paperless, these settings have to be defined in different places. +Certain configuration options may be set via the UI. This currently includes +common [OCR](#ocr) related settings. If set, these will take preference over the +settings via environment variables. If not set, the environment setting or applicable +default will be utilized instead. + - If you run paperless on docker, `paperless.conf` is not used. Rather, configure paperless by copying necessary options to `docker-compose.env`. diff --git a/src-ui/src/app/app-routing.module.ts b/src-ui/src/app/app-routing.module.ts index b3952634c..89ed06e39 100644 --- a/src-ui/src/app/app-routing.module.ts +++ b/src-ui/src/app/app-routing.module.ts @@ -25,6 +25,7 @@ import { ConsumptionTemplatesComponent } from './components/manage/consumption-t import { MailComponent } from './components/manage/mail/mail.component' import { UsersAndGroupsComponent } from './components/admin/users-groups/users-groups.component' import { CustomFieldsComponent } from './components/manage/custom-fields/custom-fields.component' +import { ConfigComponent } from './components/admin/config/config.component' export const routes: Routes = [ { path: '', redirectTo: 'dashboard', pathMatch: 'full' }, @@ -179,6 +180,17 @@ export const routes: Routes = [ }, }, }, + { + path: 'config', + component: ConfigComponent, + canActivate: [PermissionsGuard], + data: { + requiredPermission: { + action: PermissionAction.View, + type: PermissionType.Admin, + }, + }, + }, { path: 'tasks', component: TasksComponent, diff --git a/src-ui/src/app/app.module.ts b/src-ui/src/app/app.module.ts index c3b98549a..6d8d58944 100644 --- a/src-ui/src/app/app.module.ts +++ b/src-ui/src/app/app.module.ts @@ -108,6 +108,8 @@ import { ProfileEditDialogComponent } from './components/common/profile-edit-dia import { PdfViewerComponent } from './components/common/pdf-viewer/pdf-viewer.component' import { DocumentLinkComponent } from './components/common/input/document-link/document-link.component' import { PreviewPopupComponent } from './components/common/preview-popup/preview-popup.component' +import { ConfigComponent } from './components/admin/config/config.component' +import { SwitchComponent } from './components/common/input/switch/switch.component' import localeAf from '@angular/common/locales/af' import localeAr from '@angular/common/locales/ar' @@ -263,6 +265,8 @@ function initializeApp(settings: SettingsService) { PdfViewerComponent, DocumentLinkComponent, PreviewPopupComponent, + ConfigComponent, + SwitchComponent, ], imports: [ BrowserModule, diff --git a/src-ui/src/app/components/admin/config/config.component.html b/src-ui/src/app/components/admin/config/config.component.html new file mode 100644 index 000000000..48cac6bfa --- /dev/null +++ b/src-ui/src/app/components/admin/config/config.component.html @@ -0,0 +1,54 @@ + + +
+ + +
+ +
diff --git a/src-ui/src/app/components/admin/config/config.component.scss b/src-ui/src/app/components/admin/config/config.component.scss new file mode 100644 index 000000000..e69de29bb diff --git a/src-ui/src/app/components/admin/config/config.component.spec.ts b/src-ui/src/app/components/admin/config/config.component.spec.ts new file mode 100644 index 000000000..5d70881b6 --- /dev/null +++ b/src-ui/src/app/components/admin/config/config.component.spec.ts @@ -0,0 +1,103 @@ +import { ComponentFixture, TestBed } from '@angular/core/testing' + +import { ConfigComponent } from './config.component' +import { ConfigService } from 'src/app/services/config.service' +import { ToastService } from 'src/app/services/toast.service' +import { of, throwError } from 'rxjs' +import { OutputTypeConfig } from 'src/app/data/paperless-config' +import { HttpClientTestingModule } from '@angular/common/http/testing' +import { BrowserModule } from '@angular/platform-browser' +import { NgbModule } from '@ng-bootstrap/ng-bootstrap' +import { NgSelectModule } from '@ng-select/ng-select' +import { TextComponent } from '../../common/input/text/text.component' +import { NumberComponent } from '../../common/input/number/number.component' +import { SwitchComponent } from '../../common/input/switch/switch.component' +import { FormsModule, ReactiveFormsModule } from '@angular/forms' +import { PageHeaderComponent } from '../../common/page-header/page-header.component' +import { SelectComponent } from '../../common/input/select/select.component' + +describe('ConfigComponent', () => { + let component: ConfigComponent + let fixture: ComponentFixture + let configService: ConfigService + let toastService: ToastService + + beforeEach(async () => { + await TestBed.configureTestingModule({ + declarations: [ + ConfigComponent, + TextComponent, + SelectComponent, + NumberComponent, + SwitchComponent, + PageHeaderComponent, + ], + imports: [ + HttpClientTestingModule, + BrowserModule, + NgbModule, + NgSelectModule, + FormsModule, + ReactiveFormsModule, + ], + }).compileComponents() + + configService = TestBed.inject(ConfigService) + toastService = TestBed.inject(ToastService) + fixture = TestBed.createComponent(ConfigComponent) + component = fixture.componentInstance + fixture.detectChanges() + }) + + it('should load config on init, show error if necessary', () => { + const getSpy = jest.spyOn(configService, 'getConfig') + const errorSpy = jest.spyOn(toastService, 'showError') + getSpy.mockReturnValueOnce( + throwError(() => new Error('Error getting config')) + ) + component.ngOnInit() + expect(getSpy).toHaveBeenCalled() + expect(errorSpy).toHaveBeenCalled() + getSpy.mockReturnValueOnce( + of({ output_type: OutputTypeConfig.PDF_A } as any) + ) + component.ngOnInit() + expect(component.initialConfig).toEqual({ + output_type: OutputTypeConfig.PDF_A, + }) + }) + + it('should save config, show error if necessary', () => { + const saveSpy = jest.spyOn(configService, 'saveConfig') + const errorSpy = jest.spyOn(toastService, 'showError') + saveSpy.mockReturnValueOnce( + throwError(() => new Error('Error saving config')) + ) + component.saveConfig() + expect(saveSpy).toHaveBeenCalled() + expect(errorSpy).toHaveBeenCalled() + saveSpy.mockReturnValueOnce( + of({ output_type: OutputTypeConfig.PDF_A } as any) + ) + component.saveConfig() + expect(component.initialConfig).toEqual({ + output_type: OutputTypeConfig.PDF_A, + }) + }) + + it('should support discard changes', () => { + component.initialConfig = { output_type: OutputTypeConfig.PDF_A2 } as any + component.configForm.patchValue({ output_type: OutputTypeConfig.PDF_A }) + component.discardChanges() + expect(component.configForm.get('output_type').value).toEqual( + OutputTypeConfig.PDF_A2 + ) + }) + + it('should support JSON validation for e.g. user_args', () => { + component.configForm.patchValue({ user_args: '{ foo bar }' }) + expect(component.errors).toEqual({ user_args: 'Invalid JSON' }) + component.configForm.patchValue({ user_args: '{ "foo": "bar" }' }) + expect(component.errors).toEqual({ user_args: null }) + }) +}) diff --git a/src-ui/src/app/components/admin/config/config.component.ts b/src-ui/src/app/components/admin/config/config.component.ts new file mode 100644 index 000000000..66d7b537f --- /dev/null +++ b/src-ui/src/app/components/admin/config/config.component.ts @@ -0,0 +1,163 @@ +import { Component, OnDestroy, OnInit } from '@angular/core' +import { AbstractControl, FormControl, FormGroup } from '@angular/forms' +import { + BehaviorSubject, + Observable, + Subject, + Subscription, + first, + takeUntil, +} from 'rxjs' +import { + PaperlessConfigOptions, + ConfigCategory, + ConfigOption, + ConfigOptionType, + PaperlessConfig, +} from 'src/app/data/paperless-config' +import { ConfigService } from 'src/app/services/config.service' +import { ToastService } from 'src/app/services/toast.service' +import { ComponentWithPermissions } from '../../with-permissions/with-permissions.component' +import { DirtyComponent, dirtyCheck } from '@ngneat/dirty-check-forms' + +@Component({ + selector: 'pngx-config', + templateUrl: './config.component.html', + styleUrl: './config.component.scss', +}) +export class ConfigComponent + extends ComponentWithPermissions + implements OnInit, OnDestroy, DirtyComponent +{ + public readonly ConfigOptionType = ConfigOptionType + + // generated dynamically + public configForm = new FormGroup({}) + + public errors = {} + + get optionCategories(): string[] { + return Object.values(ConfigCategory) + } + + getCategoryOptions(category: string): ConfigOption[] { + return PaperlessConfigOptions.filter((o) => o.category === category) + } + + public loading: boolean = false + + initialConfig: PaperlessConfig + store: BehaviorSubject + storeSub: Subscription + isDirty$: Observable + + private unsubscribeNotifier: Subject = new Subject() + + constructor( + private configService: ConfigService, + private toastService: ToastService + ) { + super() + this.configForm.addControl('id', new FormControl()) + PaperlessConfigOptions.forEach((option) => { + this.configForm.addControl(option.key, new FormControl()) + }) + } + + ngOnInit(): void { + this.loading = true + this.configService + .getConfig() + .pipe(takeUntil(this.unsubscribeNotifier)) + .subscribe({ + next: (config) => { + this.loading = false + this.initialize(config) + }, + error: (e) => { + this.loading = false + this.toastService.showError($localize`Error retrieving config`, e) + }, + }) + + // validate JSON inputs + PaperlessConfigOptions.filter( + (o) => o.type === ConfigOptionType.JSON + ).forEach((option) => { + this.configForm + .get(option.key) + .addValidators((control: AbstractControl) => { + if (!control.value || control.value.toString().length === 0) + return null + try { + JSON.parse(control.value) + } catch (e) { + return [ + { + user_args: e, + }, + ] + } + return null + }) + this.configForm.get(option.key).statusChanges.subscribe((status) => { + this.errors[option.key] = + status === 'INVALID' ? $localize`Invalid JSON` : null + }) + this.configForm.get(option.key).updateValueAndValidity() + }) + } + + ngOnDestroy(): void { + this.unsubscribeNotifier.next(true) + this.unsubscribeNotifier.complete() + } + + private initialize(config: PaperlessConfig) { + if (!this.store) { + this.store = new BehaviorSubject(config) + + this.store + .asObservable() + .pipe(takeUntil(this.unsubscribeNotifier)) + .subscribe((state) => { + this.configForm.patchValue(state, { emitEvent: false }) + }) + + this.isDirty$ = dirtyCheck(this.configForm, this.store.asObservable()) + } + this.configForm.patchValue(config) + + this.initialConfig = config + } + + getDocsUrl(key: string) { + return `https://docs.paperless-ngx.com/configuration/#${key}` + } + + public saveConfig() { + this.loading = true + this.configService + .saveConfig(this.configForm.value as PaperlessConfig) + .pipe(takeUntil(this.unsubscribeNotifier), first()) + .subscribe({ + next: (config) => { + this.loading = false + this.initialize(config) + this.store.next(config) + this.toastService.showInfo($localize`Configuration updated`) + }, + error: (e) => { + this.loading = false + this.toastService.showError( + $localize`An error occurred updating configuration`, + e + ) + }, + }) + } + + public discardChanges() { + this.configForm.reset(this.initialConfig) + } +} diff --git a/src-ui/src/app/components/app-frame/app-frame.component.html b/src-ui/src/app/components/app-frame/app-frame.component.html index 2ab3fe0ae..234099d60 100644 --- a/src-ui/src/app/components/app-frame/app-frame.component.html +++ b/src-ui/src/app/components/app-frame/app-frame.component.html @@ -271,6 +271,15 @@  Settings + - @for (template of templates; track template) { + @for (workflow of workflows; track workflow.id) {
  • -
    -
    {{template.order}}
    -
    {{getSourceList(template)}}
    +
    +
    {{workflow.order}}
    +
    @if(workflow.enabled) { Enabled } @else { Disabled }
    +
    {{getTypesList(workflow)}}
    - -
  • } - @if (templates.length === 0) { -
  • No templates defined.
  • + @if (workflows.length === 0) { +
  • No workflows defined.
  • } diff --git a/src-ui/src/app/components/manage/consumption-templates/consumption-templates.component.scss b/src-ui/src/app/components/manage/workflows/workflows.component.scss similarity index 100% rename from src-ui/src/app/components/manage/consumption-templates/consumption-templates.component.scss rename to src-ui/src/app/components/manage/workflows/workflows.component.scss diff --git a/src-ui/src/app/components/manage/consumption-templates/consumption-templates.component.spec.ts b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts similarity index 68% rename from src-ui/src/app/components/manage/consumption-templates/consumption-templates.component.spec.ts rename to src-ui/src/app/components/manage/workflows/workflows.component.spec.ts index 2cb365576..4382d56f5 100644 --- a/src-ui/src/app/components/manage/consumption-templates/consumption-templates.component.spec.ts +++ b/src-ui/src/app/components/manage/workflows/workflows.component.spec.ts @@ -9,55 +9,76 @@ import { NgbModalModule, } from '@ng-bootstrap/ng-bootstrap' import { of, throwError } from 'rxjs' -import { - DocumentSource, - ConsumptionTemplate, -} from 'src/app/data/consumption-template' +import { Workflow } from 'src/app/data/workflow' import { IfPermissionsDirective } from 'src/app/directives/if-permissions.directive' -import { ConsumptionTemplateService } from 'src/app/services/rest/consumption-template.service' +import { WorkflowService } from 'src/app/services/rest/workflow.service' import { ToastService } from 'src/app/services/toast.service' import { ConfirmDialogComponent } from '../../common/confirm-dialog/confirm-dialog.component' import { PageHeaderComponent } from '../../common/page-header/page-header.component' -import { ConsumptionTemplatesComponent } from './consumption-templates.component' -import { ConsumptionTemplateEditDialogComponent } from '../../common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component' +import { WorkflowsComponent } from './workflows.component' +import { WorkflowEditDialogComponent } from '../../common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component' import { PermissionsService } from 'src/app/services/permissions.service' +import { + DocumentSource, + WorkflowTriggerType, +} from 'src/app/data/workflow-trigger' +import { WorkflowActionType } from 'src/app/data/workflow-action' -const templates: ConsumptionTemplate[] = [ +const workflows: Workflow[] = [ { - id: 0, - name: 'Template 1', - order: 0, - sources: [ - DocumentSource.ConsumeFolder, - DocumentSource.ApiUpload, - DocumentSource.MailFetch, + name: 'Workflow 1', + id: 1, + order: 1, + enabled: true, + triggers: [ + { + id: 1, + type: WorkflowTriggerType.Consumption, + sources: [DocumentSource.ConsumeFolder], + filter_filename: '*', + }, + ], + actions: [ + { + id: 1, + type: WorkflowActionType.Assignment, + assign_title: 'foo', + }, ], - filter_filename: 'foo', - filter_path: 'bar', - assign_tags: [1, 2, 3], }, { - id: 1, - name: 'Template 2', - order: 1, - sources: [DocumentSource.MailFetch], - filter_filename: null, - filter_path: 'foo/bar', - assign_owner: 1, + name: 'Workflow 2', + id: 2, + order: 2, + enabled: true, + triggers: [ + { + id: 2, + type: WorkflowTriggerType.DocumentAdded, + filter_filename: 'foo', + }, + ], + actions: [ + { + id: 2, + type: WorkflowActionType.Assignment, + assign_title: 'bar', + }, + ], }, ] -describe('ConsumptionTemplatesComponent', () => { - let component: ConsumptionTemplatesComponent - let fixture: ComponentFixture - let consumptionTemplateService: ConsumptionTemplateService +describe('WorkflowsComponent', () => { + let component: WorkflowsComponent + let fixture: ComponentFixture + let workflowService: WorkflowService let modalService: NgbModal let toastService: ToastService beforeEach(() => { TestBed.configureTestingModule({ declarations: [ - ConsumptionTemplatesComponent, + WorkflowsComponent, IfPermissionsDirective, PageHeaderComponent, ConfirmDialogComponent, @@ -81,18 +102,18 @@ describe('ConsumptionTemplatesComponent', () => { ], }) - consumptionTemplateService = TestBed.inject(ConsumptionTemplateService) - jest.spyOn(consumptionTemplateService, 'listAll').mockReturnValue( + workflowService = TestBed.inject(WorkflowService) + jest.spyOn(workflowService, 'listAll').mockReturnValue( of({ - count: templates.length, - all: templates.map((o) => o.id), - results: templates, + count: workflows.length, + all: workflows.map((o) => o.id), + results: workflows, }) ) modalService = TestBed.inject(NgbModal) toastService = TestBed.inject(ToastService) - fixture = TestBed.createComponent(ConsumptionTemplatesComponent) + fixture = TestBed.createComponent(WorkflowsComponent) component = fixture.componentInstance fixture.detectChanges() }) @@ -108,8 +129,7 @@ describe('ConsumptionTemplatesComponent', () => { createButton.triggerEventHandler('click') expect(modal).not.toBeUndefined() - const editDialog = - modal.componentInstance as ConsumptionTemplateEditDialogComponent + const editDialog = modal.componentInstance as WorkflowEditDialogComponent // fail first editDialog.failed.emit({ error: 'error creating item' }) @@ -117,7 +137,7 @@ describe('ConsumptionTemplatesComponent', () => { expect(reloadSpy).not.toHaveBeenCalled() // succeed - editDialog.succeeded.emit(templates[0]) + editDialog.succeeded.emit(workflows[0]) expect(toastInfoSpy).toHaveBeenCalled() expect(reloadSpy).toHaveBeenCalled() }) @@ -133,9 +153,8 @@ describe('ConsumptionTemplatesComponent', () => { editButton.triggerEventHandler('click') expect(modal).not.toBeUndefined() - const editDialog = - modal.componentInstance as ConsumptionTemplateEditDialogComponent - expect(editDialog.object).toEqual(templates[0]) + const editDialog = modal.componentInstance as WorkflowEditDialogComponent + expect(editDialog.object).toEqual(workflows[0]) // fail first editDialog.failed.emit({ error: 'error editing item' }) @@ -143,7 +162,7 @@ describe('ConsumptionTemplatesComponent', () => { expect(reloadSpy).not.toHaveBeenCalled() // succeed - editDialog.succeeded.emit(templates[0]) + editDialog.succeeded.emit(workflows[0]) expect(toastInfoSpy).toHaveBeenCalled() expect(reloadSpy).toHaveBeenCalled() }) @@ -152,7 +171,7 @@ describe('ConsumptionTemplatesComponent', () => { let modal: NgbModalRef modalService.activeInstances.subscribe((m) => (modal = m[m.length - 1])) const toastErrorSpy = jest.spyOn(toastService, 'showError') - const deleteSpy = jest.spyOn(consumptionTemplateService, 'delete') + const deleteSpy = jest.spyOn(workflowService, 'delete') const reloadSpy = jest.spyOn(component, 'reload') const deleteButton = fixture.debugElement.queryAll(By.css('button'))[3] diff --git a/src-ui/src/app/components/manage/consumption-templates/consumption-templates.component.ts b/src-ui/src/app/components/manage/workflows/workflows.component.ts similarity index 52% rename from src-ui/src/app/components/manage/consumption-templates/consumption-templates.component.ts rename to src-ui/src/app/components/manage/workflows/workflows.component.ts index 301699abd..293473888 100644 --- a/src-ui/src/app/components/manage/consumption-templates/consumption-templates.component.ts +++ b/src-ui/src/app/components/manage/workflows/workflows.component.ts @@ -1,33 +1,33 @@ import { Component, OnInit } from '@angular/core' -import { ConsumptionTemplateService } from 'src/app/services/rest/consumption-template.service' +import { WorkflowService } from 'src/app/services/rest/workflow.service' import { ComponentWithPermissions } from '../../with-permissions/with-permissions.component' import { Subject, takeUntil } from 'rxjs' -import { ConsumptionTemplate } from 'src/app/data/consumption-template' +import { Workflow } from 'src/app/data/workflow' import { NgbModal } from '@ng-bootstrap/ng-bootstrap' import { ToastService } from 'src/app/services/toast.service' import { PermissionsService } from 'src/app/services/permissions.service' import { - ConsumptionTemplateEditDialogComponent, - DOCUMENT_SOURCE_OPTIONS, -} from '../../common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component' + WorkflowEditDialogComponent, + WORKFLOW_TYPE_OPTIONS, +} from '../../common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component' import { ConfirmDialogComponent } from '../../common/confirm-dialog/confirm-dialog.component' import { EditDialogMode } from '../../common/edit-dialog/edit-dialog.component' @Component({ - selector: 'pngx-consumption-templates', - templateUrl: './consumption-templates.component.html', - styleUrls: ['./consumption-templates.component.scss'], + selector: 'pngx-workflows', + templateUrl: './workflows.component.html', + styleUrls: ['./workflows.component.scss'], }) -export class ConsumptionTemplatesComponent +export class WorkflowsComponent extends ComponentWithPermissions implements OnInit { - public templates: ConsumptionTemplate[] = [] + public workflows: Workflow[] = [] private unsubscribeNotifier: Subject = new Subject() constructor( - private consumptionTemplateService: ConsumptionTemplateService, + private workflowService: WorkflowService, public permissionsService: PermissionsService, private modalService: NgbModal, private toastService: ToastService @@ -40,68 +40,74 @@ export class ConsumptionTemplatesComponent } reload() { - this.consumptionTemplateService + this.workflowService .listAll() .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe((r) => { - this.templates = r.results + this.workflows = r.results }) } - getSourceList(template: ConsumptionTemplate): string { - return template.sources - .map((id) => DOCUMENT_SOURCE_OPTIONS.find((s) => s.id === id).name) + getTypesList(template: Workflow): string { + return template.triggers + .map( + (trigger) => + WORKFLOW_TYPE_OPTIONS.find((t) => t.id === trigger.type).name + ) .join(', ') } - editTemplate(rule: ConsumptionTemplate) { - const modal = this.modalService.open( - ConsumptionTemplateEditDialogComponent, - { - backdrop: 'static', - size: 'xl', - } - ) - modal.componentInstance.dialogMode = rule + editWorkflow(workflow: Workflow) { + const modal = this.modalService.open(WorkflowEditDialogComponent, { + backdrop: 'static', + size: 'xl', + }) + modal.componentInstance.dialogMode = workflow ? EditDialogMode.EDIT : EditDialogMode.CREATE - modal.componentInstance.object = rule + if (workflow) { + // quick "deep" clone so original doesnt get modified + const clone = Object.assign({}, workflow) + clone.actions = [...workflow.actions] + clone.triggers = [...workflow.triggers] + modal.componentInstance.object = clone + } modal.componentInstance.succeeded .pipe(takeUntil(this.unsubscribeNotifier)) - .subscribe((newTemplate) => { + .subscribe((newWorkflow) => { this.toastService.showInfo( - $localize`Saved template "${newTemplate.name}".` + $localize`Saved workflow "${newWorkflow.name}".` ) - this.consumptionTemplateService.clearCache() + this.workflowService.clearCache() this.reload() }) modal.componentInstance.failed .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe((e) => { - this.toastService.showError($localize`Error saving template.`, e) + this.toastService.showError($localize`Error saving workflow.`, e) }) } - deleteTemplate(rule: ConsumptionTemplate) { + deleteWorkflow(workflow: Workflow) { const modal = this.modalService.open(ConfirmDialogComponent, { backdrop: 'static', }) - modal.componentInstance.title = $localize`Confirm delete template` - modal.componentInstance.messageBold = $localize`This operation will permanently delete this template.` + modal.componentInstance.title = $localize`Confirm delete workflow` + modal.componentInstance.messageBold = $localize`This operation will permanently delete this workflow.` modal.componentInstance.message = $localize`This operation cannot be undone.` modal.componentInstance.btnClass = 'btn-danger' modal.componentInstance.btnCaption = $localize`Proceed` modal.componentInstance.confirmClicked.subscribe(() => { modal.componentInstance.buttonsEnabled = false - this.consumptionTemplateService.delete(rule).subscribe({ + this.workflowService.delete(workflow).subscribe({ next: () => { modal.close() - this.toastService.showInfo($localize`Deleted template`) - this.consumptionTemplateService.clearCache() + this.toastService.showInfo($localize`Deleted workflow`) + this.workflowService.clearCache() this.reload() }, error: (e) => { - this.toastService.showError($localize`Error deleting template.`, e) + this.toastService.showError($localize`Error deleting workflow.`, e) }, }) }) diff --git a/src-ui/src/app/data/consumption-template.ts b/src-ui/src/app/data/workflow-action.ts similarity index 64% rename from src-ui/src/app/data/consumption-template.ts rename to src-ui/src/app/data/workflow-action.ts index cc85712c8..a0da5f03a 100644 --- a/src-ui/src/app/data/consumption-template.ts +++ b/src-ui/src/app/data/workflow-action.ts @@ -1,23 +1,10 @@ import { ObjectWithId } from './object-with-id' -export enum DocumentSource { - ConsumeFolder = 1, - ApiUpload = 2, - MailFetch = 3, +export enum WorkflowActionType { + Assignment = 1, } - -export interface ConsumptionTemplate extends ObjectWithId { - name: string - - order: number - - sources: DocumentSource[] - - filter_filename: string - - filter_path?: string - - filter_mailrule?: number // MailRule.id +export interface WorkflowAction extends ObjectWithId { + type: WorkflowActionType assign_title?: string diff --git a/src-ui/src/app/data/workflow-trigger.ts b/src-ui/src/app/data/workflow-trigger.ts new file mode 100644 index 000000000..3e3bf8cf8 --- /dev/null +++ b/src-ui/src/app/data/workflow-trigger.ts @@ -0,0 +1,37 @@ +import { ObjectWithId } from './object-with-id' + +export enum DocumentSource { + ConsumeFolder = 1, + ApiUpload = 2, + MailFetch = 3, +} + +export enum WorkflowTriggerType { + Consumption = 1, + DocumentAdded = 2, + DocumentUpdated = 3, +} + +export interface WorkflowTrigger extends ObjectWithId { + type: WorkflowTriggerType + + sources?: DocumentSource[] + + filter_filename?: string + + filter_path?: string + + filter_mailrule?: number // MailRule.id + + match?: string + + matching_algorithm?: number + + is_insensitive?: boolean + + filter_has_tags?: number[] // Tag.id[] + + filter_has_correspondent?: number // Correspondent.id + + filter_has_document_type?: number // DocumentType.id +} diff --git a/src-ui/src/app/data/workflow.ts b/src-ui/src/app/data/workflow.ts new file mode 100644 index 000000000..740507a62 --- /dev/null +++ b/src-ui/src/app/data/workflow.ts @@ -0,0 +1,15 @@ +import { ObjectWithId } from './object-with-id' +import { WorkflowAction } from './workflow-action' +import { WorkflowTrigger } from './workflow-trigger' + +export interface Workflow extends ObjectWithId { + name: string + + order: number + + enabled: boolean + + triggers: WorkflowTrigger[] + + actions: WorkflowAction[] +} diff --git a/src-ui/src/app/services/permissions.service.spec.ts b/src-ui/src/app/services/permissions.service.spec.ts index 968082ae9..66276fbbb 100644 --- a/src-ui/src/app/services/permissions.service.spec.ts +++ b/src-ui/src/app/services/permissions.service.spec.ts @@ -252,10 +252,18 @@ describe('PermissionsService', () => { 'view_sharelink', 'change_sharelink', 'delete_sharelink', - 'add_consumptiontemplate', - 'view_consumptiontemplate', - 'change_consumptiontemplate', - 'delete_consumptiontemplate', + 'add_workflow', + 'view_workflow', + 'change_workflow', + 'delete_workflow', + 'add_workflowtrigger', + 'view_workflowtrigger', + 'change_workflowtrigger', + 'delete_workflowtrigger', + 'add_workflowaction', + 'view_workflowaction', + 'change_workflowaction', + 'delete_workflowaction', 'add_customfield', 'view_customfield', 'change_customfield', diff --git a/src-ui/src/app/services/permissions.service.ts b/src-ui/src/app/services/permissions.service.ts index a4e30d57e..3a1b99377 100644 --- a/src-ui/src/app/services/permissions.service.ts +++ b/src-ui/src/app/services/permissions.service.ts @@ -25,8 +25,10 @@ export enum PermissionType { Group = '%s_group', Admin = '%s_logentry', ShareLink = '%s_sharelink', - ConsumptionTemplate = '%s_consumptiontemplate', CustomField = '%s_customfield', + Workflow = '%s_workflow', + WorkflowTrigger = '%s_workflowtrigger', + WorkflowAction = '%s_workflowaction', } @Injectable({ diff --git a/src-ui/src/app/services/rest/consumption-template.service.spec.ts b/src-ui/src/app/services/rest/consumption-template.service.spec.ts deleted file mode 100644 index 920d0575c..000000000 --- a/src-ui/src/app/services/rest/consumption-template.service.spec.ts +++ /dev/null @@ -1,64 +0,0 @@ -import { HttpTestingController } from '@angular/common/http/testing' -import { TestBed } from '@angular/core/testing' -import { Subscription } from 'rxjs' -import { environment } from 'src/environments/environment' -import { commonAbstractPaperlessServiceTests } from './abstract-paperless-service.spec' -import { ConsumptionTemplateService } from './consumption-template.service' -import { - DocumentSource, - ConsumptionTemplate, -} from 'src/app/data/consumption-template' - -let httpTestingController: HttpTestingController -let service: ConsumptionTemplateService -const endpoint = 'consumption_templates' -const templates: ConsumptionTemplate[] = [ - { - name: 'Template 1', - id: 1, - order: 1, - filter_filename: '*test*', - filter_path: null, - sources: [DocumentSource.ApiUpload], - assign_correspondent: 2, - }, - { - name: 'Template 2', - id: 2, - order: 2, - filter_filename: null, - filter_path: '/test/', - sources: [DocumentSource.ConsumeFolder, DocumentSource.ApiUpload], - assign_document_type: 1, - }, -] - -// run common tests -commonAbstractPaperlessServiceTests( - 'consumption_templates', - ConsumptionTemplateService -) - -describe(`Additional service tests for ConsumptionTemplateService`, () => { - it('should reload', () => { - service.reload() - const req = httpTestingController.expectOne( - `${environment.apiBaseUrl}${endpoint}/?page=1&page_size=100000` - ) - req.flush({ - results: templates, - }) - expect(service.allTemplates).toEqual(templates) - }) - - beforeEach(() => { - // Dont need to setup again - - httpTestingController = TestBed.inject(HttpTestingController) - service = TestBed.inject(ConsumptionTemplateService) - }) - - afterEach(() => { - httpTestingController.verify() - }) -}) diff --git a/src-ui/src/app/services/rest/workflow.service.spec.ts b/src-ui/src/app/services/rest/workflow.service.spec.ts new file mode 100644 index 000000000..cdffda3e1 --- /dev/null +++ b/src-ui/src/app/services/rest/workflow.service.spec.ts @@ -0,0 +1,85 @@ +import { HttpTestingController } from '@angular/common/http/testing' +import { TestBed } from '@angular/core/testing' +import { environment } from 'src/environments/environment' +import { commonAbstractPaperlessServiceTests } from './abstract-paperless-service.spec' +import { WorkflowService } from './workflow.service' +import { Workflow } from 'src/app/data/workflow' +import { + DocumentSource, + WorkflowTriggerType, +} from 'src/app/data/workflow-trigger' +import { WorkflowActionType } from 'src/app/data/workflow-action' + +let httpTestingController: HttpTestingController +let service: WorkflowService +const endpoint = 'workflows' +const workflows: Workflow[] = [ + { + name: 'Workflow 1', + id: 1, + order: 1, + enabled: true, + triggers: [ + { + id: 1, + type: WorkflowTriggerType.Consumption, + sources: [DocumentSource.ConsumeFolder], + filter_filename: '*', + }, + ], + actions: [ + { + id: 1, + type: WorkflowActionType.Assignment, + assign_title: 'foo', + }, + ], + }, + { + name: 'Workflow 2', + id: 2, + order: 2, + enabled: true, + triggers: [ + { + id: 2, + type: WorkflowTriggerType.DocumentAdded, + filter_filename: 'foo', + }, + ], + actions: [ + { + id: 2, + type: WorkflowActionType.Assignment, + assign_title: 'bar', + }, + ], + }, +] + +// run common tests +commonAbstractPaperlessServiceTests(endpoint, WorkflowService) + +describe(`Additional service tests for WorkflowService`, () => { + it('should reload', () => { + service.reload() + const req = httpTestingController.expectOne( + `${environment.apiBaseUrl}${endpoint}/?page=1&page_size=100000` + ) + req.flush({ + results: workflows, + }) + expect(service.allWorkflows).toEqual(workflows) + }) + + beforeEach(() => { + // Dont need to setup again + + httpTestingController = TestBed.inject(HttpTestingController) + service = TestBed.inject(WorkflowService) + }) + + afterEach(() => { + httpTestingController.verify() + }) +}) diff --git a/src-ui/src/app/services/rest/consumption-template.service.ts b/src-ui/src/app/services/rest/workflow.service.ts similarity index 56% rename from src-ui/src/app/services/rest/consumption-template.service.ts rename to src-ui/src/app/services/rest/workflow.service.ts index eb932ebf7..0b489bc67 100644 --- a/src-ui/src/app/services/rest/consumption-template.service.ts +++ b/src-ui/src/app/services/rest/workflow.service.ts @@ -1,42 +1,42 @@ import { HttpClient } from '@angular/common/http' import { Injectable } from '@angular/core' import { tap } from 'rxjs' -import { ConsumptionTemplate } from 'src/app/data/consumption-template' +import { Workflow } from 'src/app/data/workflow' import { AbstractPaperlessService } from './abstract-paperless-service' @Injectable({ providedIn: 'root', }) -export class ConsumptionTemplateService extends AbstractPaperlessService { +export class WorkflowService extends AbstractPaperlessService { loading: boolean constructor(http: HttpClient) { - super(http, 'consumption_templates') + super(http, 'workflows') } public reload() { this.loading = true this.listAll().subscribe((r) => { - this.templates = r.results + this.workflows = r.results this.loading = false }) } - private templates: ConsumptionTemplate[] = [] + private workflows: Workflow[] = [] - public get allTemplates(): ConsumptionTemplate[] { - return this.templates + public get allWorkflows(): Workflow[] { + return this.workflows } - create(o: ConsumptionTemplate) { + create(o: Workflow) { return super.create(o).pipe(tap(() => this.reload())) } - update(o: ConsumptionTemplate) { + update(o: Workflow) { return super.update(o).pipe(tap(() => this.reload())) } - delete(o: ConsumptionTemplate) { + delete(o: Workflow) { return super.delete(o).pipe(tap(() => this.reload())) } } diff --git a/src-ui/src/styles.scss b/src-ui/src/styles.scss index e128b27fa..c8e8e8d5c 100644 --- a/src-ui/src/styles.scss +++ b/src-ui/src/styles.scss @@ -647,8 +647,6 @@ code { } .accordion { - --bs-accordion-btn-padding-x: 0.75rem; - --bs-accordion-btn-padding-y: 0.375rem; --bs-accordion-btn-bg: var(--bs-light); --bs-accordion-btn-color: var(--bs-primary); --bs-accordion-color: var(--bs-body-color); diff --git a/src/documents/apps.py b/src/documents/apps.py index d681b9a87..7ed006d06 100644 --- a/src/documents/apps.py +++ b/src/documents/apps.py @@ -9,8 +9,11 @@ class DocumentsConfig(AppConfig): def ready(self): from documents.signals import document_consumption_finished + from documents.signals import document_updated from documents.signals.handlers import add_inbox_tags from documents.signals.handlers import add_to_index + from documents.signals.handlers import run_workflow_added + from documents.signals.handlers import run_workflow_updated from documents.signals.handlers import set_correspondent from documents.signals.handlers import set_document_type from documents.signals.handlers import set_log_entry @@ -24,5 +27,7 @@ class DocumentsConfig(AppConfig): document_consumption_finished.connect(set_storage_path) document_consumption_finished.connect(set_log_entry) document_consumption_finished.connect(add_to_index) + document_consumption_finished.connect(run_workflow_added) + document_updated.connect(run_workflow_updated) AppConfig.ready(self) diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 5d6fe7f65..11faeea43 100644 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -26,8 +26,7 @@ from documents.data_models import DocumentMetadataOverrides from documents.file_handling import create_source_path_directory from documents.file_handling import generate_unique_filename from documents.loggers import LoggingMixin -from documents.matching import document_matches_template -from documents.models import ConsumptionTemplate +from documents.matching import document_matches_workflow from documents.models import Correspondent from documents.models import CustomField from documents.models import CustomFieldInstance @@ -36,6 +35,8 @@ from documents.models import DocumentType from documents.models import FileInfo from documents.models import StoragePath from documents.models import Tag +from documents.models import Workflow +from documents.models import WorkflowTrigger from documents.parsers import DocumentParser from documents.parsers import ParseError from documents.parsers import get_parser_class_for_mime_type @@ -602,66 +603,71 @@ class Consumer(LoggingMixin): return document - def get_template_overrides( + def get_workflow_overrides( self, input_doc: ConsumableDocument, ) -> DocumentMetadataOverrides: """ - Match consumption templates to a document based on source and - file name filters, path filters or mail rule filter if specified + Get overrides from matching workflows """ overrides = DocumentMetadataOverrides() - for template in ConsumptionTemplate.objects.all().order_by("order"): + for workflow in Workflow.objects.filter(enabled=True).order_by("order"): template_overrides = DocumentMetadataOverrides() - if document_matches_template(input_doc, template): - if template.assign_title is not None: - template_overrides.title = template.assign_title - if template.assign_tags is not None: - template_overrides.tag_ids = [ - tag.pk for tag in template.assign_tags.all() - ] - if template.assign_correspondent is not None: - template_overrides.correspondent_id = ( - template.assign_correspondent.pk + if document_matches_workflow( + input_doc, + workflow, + WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + ): + for action in workflow.actions.all(): + self.log.info( + f"Applying overrides in {action} from {workflow}", ) - if template.assign_document_type is not None: - template_overrides.document_type_id = ( - template.assign_document_type.pk - ) - if template.assign_storage_path is not None: - template_overrides.storage_path_id = template.assign_storage_path.pk - if template.assign_owner is not None: - template_overrides.owner_id = template.assign_owner.pk - if template.assign_view_users is not None: - template_overrides.view_users = [ - user.pk for user in template.assign_view_users.all() - ] - if template.assign_view_groups is not None: - template_overrides.view_groups = [ - group.pk for group in template.assign_view_groups.all() - ] - if template.assign_change_users is not None: - template_overrides.change_users = [ - user.pk for user in template.assign_change_users.all() - ] - if template.assign_change_groups is not None: - template_overrides.change_groups = [ - group.pk for group in template.assign_change_groups.all() - ] - if template.assign_custom_fields is not None: - template_overrides.custom_field_ids = [ - field.pk for field in template.assign_custom_fields.all() - ] + if action.assign_title is not None: + template_overrides.title = action.assign_title + if action.assign_tags is not None: + template_overrides.tag_ids = [ + tag.pk for tag in action.assign_tags.all() + ] + if action.assign_correspondent is not None: + template_overrides.correspondent_id = ( + action.assign_correspondent.pk + ) + if action.assign_document_type is not None: + template_overrides.document_type_id = ( + action.assign_document_type.pk + ) + if action.assign_storage_path is not None: + template_overrides.storage_path_id = ( + action.assign_storage_path.pk + ) + if action.assign_owner is not None: + template_overrides.owner_id = action.assign_owner.pk + if action.assign_view_users is not None: + template_overrides.view_users = [ + user.pk for user in action.assign_view_users.all() + ] + if action.assign_view_groups is not None: + template_overrides.view_groups = [ + group.pk for group in action.assign_view_groups.all() + ] + if action.assign_change_users is not None: + template_overrides.change_users = [ + user.pk for user in action.assign_change_users.all() + ] + if action.assign_change_groups is not None: + template_overrides.change_groups = [ + group.pk for group in action.assign_change_groups.all() + ] + if action.assign_custom_fields is not None: + template_overrides.custom_field_ids = [ + field.pk for field in action.assign_custom_fields.all() + ] - overrides.update(template_overrides) + overrides.update(template_overrides) return overrides def _parse_title_placeholders(self, title: str) -> str: - """ - Consumption template title placeholders can only include items that are - assigned as part of this template (since auto-matching hasnt happened yet) - """ local_added = timezone.localtime(timezone.now()) correspondent_name = ( @@ -680,20 +686,14 @@ class Consumer(LoggingMixin): else None ) - return title.format( - correspondent=correspondent_name, - document_type=doc_type_name, - added=local_added.isoformat(), - added_year=local_added.strftime("%Y"), - added_year_short=local_added.strftime("%y"), - added_month=local_added.strftime("%m"), - added_month_name=local_added.strftime("%B"), - added_month_name_short=local_added.strftime("%b"), - added_day=local_added.strftime("%d"), - owner_username=owner_username, - original_filename=Path(self.filename).stem, - added_time=local_added.strftime("%H:%M"), - ).strip() + return parse_doc_title_w_placeholders( + title, + correspondent_name, + doc_type_name, + owner_username, + local_added, + self.filename, + ) def _store( self, @@ -846,3 +846,47 @@ class Consumer(LoggingMixin): self.log.warning("Script stderr:") for line in stderr_str: self.log.warning(line) + + +def parse_doc_title_w_placeholders( + title: str, + correspondent_name: str, + doc_type_name: str, + owner_username: str, + local_added: datetime.datetime, + original_filename: str, + created: Optional[datetime.datetime] = None, +) -> str: + """ + Available title placeholders for Workflows depend on what has already been assigned, + e.g. for pre-consumption triggers created will not have been parsed yet, but it will + for added / updated triggers + """ + formatting = { + "correspondent": correspondent_name, + "document_type": doc_type_name, + "added": local_added.isoformat(), + "added_year": local_added.strftime("%Y"), + "added_year_short": local_added.strftime("%y"), + "added_month": local_added.strftime("%m"), + "added_month_name": local_added.strftime("%B"), + "added_month_name_short": local_added.strftime("%b"), + "added_day": local_added.strftime("%d"), + "added_time": local_added.strftime("%H:%M"), + "owner_username": owner_username, + "original_filename": Path(original_filename).stem, + } + if created is not None: + formatting.update( + { + "created": created.isoformat(), + "created_year": created.strftime("%Y"), + "created_year_short": created.strftime("%y"), + "created_month": created.strftime("%m"), + "created_month_name": created.strftime("%B"), + "created_month_name_short": created.strftime("%b"), + "created_day": created.strftime("%d"), + "created_time": created.strftime("%H:%M"), + }, + ) + return title.format(**formatting).strip() diff --git a/src/documents/data_models.py b/src/documents/data_models.py index 0d506cd6a..6bf3f4f96 100644 --- a/src/documents/data_models.py +++ b/src/documents/data_models.py @@ -33,21 +33,20 @@ class DocumentMetadataOverrides: def update(self, other: "DocumentMetadataOverrides") -> "DocumentMetadataOverrides": """ Merges two DocumentMetadataOverrides objects such that object B's overrides - are only applied if the property is empty in object A or merged if multiple - are accepted. + are applied to object A or merged if multiple are accepted. The update is an in-place modification of self """ # only if empty - if self.title is None: + if other.title is not None: self.title = other.title - if self.correspondent_id is None: + if other.correspondent_id is not None: self.correspondent_id = other.correspondent_id - if self.document_type_id is None: + if other.document_type_id is not None: self.document_type_id = other.document_type_id - if self.storage_path_id is None: + if other.storage_path_id is not None: self.storage_path_id = other.storage_path_id - if self.owner_id is None: + if other.owner_id is not None: self.owner_id = other.owner_id # merge diff --git a/src/documents/management/commands/document_exporter.py b/src/documents/management/commands/document_exporter.py index bd5e322e3..b08b0b208 100644 --- a/src/documents/management/commands/document_exporter.py +++ b/src/documents/management/commands/document_exporter.py @@ -23,7 +23,6 @@ from guardian.models import UserObjectPermission from documents.file_handling import delete_empty_directories from documents.file_handling import generate_filename -from documents.models import ConsumptionTemplate from documents.models import Correspondent from documents.models import CustomField from documents.models import CustomFieldInstance @@ -35,6 +34,9 @@ from documents.models import SavedViewFilterRule from documents.models import StoragePath from documents.models import Tag from documents.models import UiSettings +from documents.models import Workflow +from documents.models import WorkflowAction +from documents.models import WorkflowTrigger from documents.settings import EXPORTER_ARCHIVE_NAME from documents.settings import EXPORTER_FILE_NAME from documents.settings import EXPORTER_THUMBNAIL_NAME @@ -285,7 +287,15 @@ class Command(BaseCommand): ) manifest += json.loads( - serializers.serialize("json", ConsumptionTemplate.objects.all()), + serializers.serialize("json", WorkflowTrigger.objects.all()), + ) + + manifest += json.loads( + serializers.serialize("json", WorkflowAction.objects.all()), + ) + + manifest += json.loads( + serializers.serialize("json", Workflow.objects.all()), ) manifest += json.loads( diff --git a/src/documents/matching.py b/src/documents/matching.py index 9c6e11ca7..ec28f80ca 100644 --- a/src/documents/matching.py +++ b/src/documents/matching.py @@ -1,27 +1,35 @@ import logging import re from fnmatch import fnmatch +from typing import Union from documents.classifier import DocumentClassifier from documents.data_models import ConsumableDocument from documents.data_models import DocumentSource -from documents.models import ConsumptionTemplate from documents.models import Correspondent from documents.models import Document from documents.models import DocumentType from documents.models import MatchingModel from documents.models import StoragePath from documents.models import Tag +from documents.models import Workflow +from documents.models import WorkflowTrigger from documents.permissions import get_objects_for_user_owner_aware logger = logging.getLogger("paperless.matching") -def log_reason(matching_model: MatchingModel, document: Document, reason: str): +def log_reason( + matching_model: Union[MatchingModel, WorkflowTrigger], + document: Document, + reason: str, +): class_name = type(matching_model).__name__ + name = ( + matching_model.name if hasattr(matching_model, "name") else str(matching_model) + ) logger.debug( - f"{class_name} {matching_model.name} matched on document " - f"{document} because {reason}", + f"{class_name} {name} matched on document {document} because {reason}", ) @@ -237,65 +245,182 @@ def _split_match(matching_model): ] -def document_matches_template( +def consumable_document_matches_workflow( document: ConsumableDocument, - template: ConsumptionTemplate, -) -> bool: + trigger: WorkflowTrigger, +) -> tuple[bool, str]: """ - Returns True if the incoming document matches all filters and - settings from the template, False otherwise + Returns True if the ConsumableDocument matches all filters from the workflow trigger, + False otherwise. Includes a reason if doesn't match """ - def log_match_failure(reason: str): - logger.info(f"Document did not match template {template.name}") - logger.debug(reason) + trigger_matched = True + reason = "" - # Document source vs template source - if document.source not in [int(x) for x in list(template.sources)]: - log_match_failure( + # Document source vs trigger source + if document.source not in [int(x) for x in list(trigger.sources)]: + reason = ( f"Document source {document.source.name} not in" - f" {[DocumentSource(int(x)).name for x in template.sources]}", + f" {[DocumentSource(int(x)).name for x in trigger.sources]}", ) - return False + trigger_matched = False - # Document mail rule vs template mail rule + # Document mail rule vs trigger mail rule if ( document.mailrule_id is not None - and template.filter_mailrule is not None - and document.mailrule_id != template.filter_mailrule.pk + and trigger.filter_mailrule is not None + and document.mailrule_id != trigger.filter_mailrule.pk ): - log_match_failure( + reason = ( f"Document mail rule {document.mailrule_id}" - f" != {template.filter_mailrule.pk}", + f" != {trigger.filter_mailrule.pk}", ) - return False + trigger_matched = False - # Document filename vs template filename + # Document filename vs trigger filename if ( - template.filter_filename is not None - and len(template.filter_filename) > 0 + trigger.filter_filename is not None + and len(trigger.filter_filename) > 0 and not fnmatch( document.original_file.name.lower(), - template.filter_filename.lower(), + trigger.filter_filename.lower(), ) ): - log_match_failure( + reason = ( f"Document filename {document.original_file.name} does not match" - f" {template.filter_filename.lower()}", + f" {trigger.filter_filename.lower()}", ) - return False + trigger_matched = False - # Document path vs template path + # Document path vs trigger path if ( - template.filter_path is not None - and len(template.filter_path) > 0 - and not document.original_file.match(template.filter_path) + trigger.filter_path is not None + and len(trigger.filter_path) > 0 + and not document.original_file.match(trigger.filter_path) ): - log_match_failure( + reason = ( f"Document path {document.original_file}" - f" does not match {template.filter_path}", + f" does not match {trigger.filter_path}", ) - return False + trigger_matched = False - logger.info(f"Document matched template {template.name}") - return True + return (trigger_matched, reason) + + +def existing_document_matches_workflow( + document: Document, + trigger: WorkflowTrigger, +) -> tuple[bool, str]: + """ + Returns True if the Document matches all filters from the workflow trigger, + False otherwise. Includes a reason if doesn't match + """ + + trigger_matched = True + reason = "" + + if trigger.matching_algorithm > MatchingModel.MATCH_NONE and not matches( + trigger, + document, + ): + reason = ( + f"Document content matching settings for algorithm '{trigger.matching_algorithm}' did not match", + ) + trigger_matched = False + + # Document tags vs trigger has_tags + if ( + trigger.filter_has_tags.all().count() > 0 + and document.tags.filter( + id__in=trigger.filter_has_tags.all().values_list("id"), + ).count() + == 0 + ): + reason = ( + f"Document tags {document.tags.all()} do not include" + f" {trigger.filter_has_tags.all()}", + ) + trigger_matched = False + + # Document correpondent vs trigger has_correspondent + if ( + trigger.filter_has_correspondent is not None + and document.correspondent != trigger.filter_has_correspondent + ): + reason = ( + f"Document correspondent {document.correspondent} does not match {trigger.filter_has_correspondent}", + ) + trigger_matched = False + + # Document document_type vs trigger has_document_type + if ( + trigger.filter_has_document_type is not None + and document.document_type != trigger.filter_has_document_type + ): + reason = ( + f"Document doc type {document.document_type} does not match {trigger.filter_has_document_type}", + ) + trigger_matched = False + + # Document original_filename vs trigger filename + if ( + trigger.filter_filename is not None + and len(trigger.filter_filename) > 0 + and document.original_filename is not None + and not fnmatch( + document.original_filename.lower(), + trigger.filter_filename.lower(), + ) + ): + reason = ( + f"Document filename {document.original_filename} does not match" + f" {trigger.filter_filename.lower()}", + ) + trigger_matched = False + + return (trigger_matched, reason) + + +def document_matches_workflow( + document: Union[ConsumableDocument, Document], + workflow: Workflow, + trigger_type: WorkflowTrigger.WorkflowTriggerType, +) -> bool: + """ + Returns True if the ConsumableDocument or Document matches all filters and + settings from the workflow trigger, False otherwise + """ + + trigger_matched = True + if workflow.triggers.filter(type=trigger_type).count() == 0: + trigger_matched = False + logger.info(f"Document did not match {workflow}") + logger.debug(f"No matching triggers with type {trigger_type} found") + else: + for trigger in workflow.triggers.filter(type=trigger_type): + if trigger_type == WorkflowTrigger.WorkflowTriggerType.CONSUMPTION: + trigger_matched, reason = consumable_document_matches_workflow( + document, + trigger, + ) + elif ( + trigger_type == WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED + or trigger_type == WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED + ): + trigger_matched, reason = existing_document_matches_workflow( + document, + trigger, + ) + else: + # New trigger types need to be explicitly checked above + raise Exception(f"Trigger type {trigger_type} not yet supported") + + if trigger_matched: + logger.info(f"Document matched {trigger} from {workflow}") + # matched, bail early + return True + else: + logger.info(f"Document did not match {workflow}") + logger.debug(reason) + + return trigger_matched diff --git a/src/documents/migrations/1044_workflow_workflowaction_workflowtrigger_and_more.py b/src/documents/migrations/1044_workflow_workflowaction_workflowtrigger_and_more.py new file mode 100644 index 000000000..521de61b8 --- /dev/null +++ b/src/documents/migrations/1044_workflow_workflowaction_workflowtrigger_and_more.py @@ -0,0 +1,513 @@ +# Generated by Django 4.2.7 on 2023-12-23 22:51 + +import django.db.models.deletion +import multiselectfield.db.fields +from django.conf import settings +from django.contrib.auth.management import create_permissions +from django.contrib.auth.models import Group +from django.contrib.auth.models import Permission +from django.contrib.auth.models import User +from django.db import migrations +from django.db import models +from django.db import transaction +from django.db.models import Q + +from documents.models import Correspondent +from documents.models import CustomField +from documents.models import DocumentType +from documents.models import StoragePath +from documents.models import Tag +from documents.models import Workflow +from documents.models import WorkflowAction +from documents.models import WorkflowTrigger +from paperless_mail.models import MailRule + + +def add_workflow_permissions(apps, schema_editor): + # create permissions without waiting for post_migrate signal + for app_config in apps.get_app_configs(): + app_config.models_module = True + create_permissions(app_config, apps=apps, verbosity=0) + app_config.models_module = None + + add_permission = Permission.objects.get(codename="add_document") + workflow_permissions = Permission.objects.filter( + codename__contains="workflow", + ) + + for user in User.objects.filter(Q(user_permissions=add_permission)).distinct(): + user.user_permissions.add(*workflow_permissions) + + for group in Group.objects.filter(Q(permissions=add_permission)).distinct(): + group.permissions.add(*workflow_permissions) + + +def remove_workflow_permissions(apps, schema_editor): + workflow_permissions = Permission.objects.filter( + codename__contains="workflow", + ) + + for user in User.objects.all(): + user.user_permissions.remove(*workflow_permissions) + + for group in Group.objects.all(): + group.permissions.remove(*workflow_permissions) + + +def migrate_consumption_templates(apps, schema_editor): + """ + Migrate consumption templates to workflows. At this point ConsumptionTemplate still exists + but objects are not returned as their true model so we have to manually do that + """ + model_name = "ConsumptionTemplate" + app_name = "documents" + + ConsumptionTemplate = apps.get_model(app_label=app_name, model_name=model_name) + + with transaction.atomic(): + for template in ConsumptionTemplate.objects.all(): + trigger = WorkflowTrigger( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=template.sources, + filter_path=template.filter_path, + filter_filename=template.filter_filename, + ) + if template.filter_mailrule is not None: + trigger.filter_mailrule = MailRule.objects.get( + id=template.filter_mailrule.id, + ) + trigger.save() + + action = WorkflowAction.objects.create( + assign_title=template.assign_title, + ) + if template.assign_document_type is not None: + action.assign_document_type = DocumentType.objects.get( + id=template.assign_document_type.id, + ) + if template.assign_correspondent is not None: + action.assign_correspondent = Correspondent.objects.get( + id=template.assign_correspondent.id, + ) + if template.assign_storage_path is not None: + action.assign_storage_path = StoragePath.objects.get( + id=template.assign_storage_path.id, + ) + if template.assign_owner is not None: + action.assign_owner = User.objects.get(id=template.assign_owner.id) + if template.assign_tags is not None: + action.assign_tags.set( + Tag.objects.filter( + id__in=[t.id for t in template.assign_tags.all()], + ).all(), + ) + if template.assign_view_users is not None: + action.assign_view_users.set( + User.objects.filter( + id__in=[u.id for u in template.assign_view_users.all()], + ).all(), + ) + if template.assign_view_groups is not None: + action.assign_view_groups.set( + Group.objects.filter( + id__in=[g.id for g in template.assign_view_groups.all()], + ).all(), + ) + if template.assign_change_users is not None: + action.assign_change_users.set( + User.objects.filter( + id__in=[u.id for u in template.assign_change_users.all()], + ).all(), + ) + if template.assign_change_groups is not None: + action.assign_change_groups.set( + Group.objects.filter( + id__in=[g.id for g in template.assign_change_groups.all()], + ).all(), + ) + if template.assign_custom_fields is not None: + action.assign_custom_fields.set( + CustomField.objects.filter( + id__in=[cf.id for cf in template.assign_custom_fields.all()], + ).all(), + ) + action.save() + + workflow = Workflow.objects.create( + name=template.name, + order=template.order, + ) + workflow.triggers.set([trigger]) + workflow.actions.set([action]) + workflow.save() + + +def unmigrate_consumption_templates(apps, schema_editor): + model_name = "ConsumptionTemplate" + app_name = "documents" + + ConsumptionTemplate = apps.get_model(app_label=app_name, model_name=model_name) + + for workflow in Workflow.objects.all(): + template = ConsumptionTemplate.objects.create( + name=workflow.name, + order=workflow.order, + sources=workflow.triggers.first().sources, + filter_path=workflow.triggers.first().filter_path, + filter_filename=workflow.triggers.first().filter_filename, + filter_mailrule=workflow.triggers.first().filter_mailrule, + assign_title=workflow.actions.first().assign_title, + assign_document_type=workflow.actions.first().assign_document_type, + assign_correspondent=workflow.actions.first().assign_correspondent, + assign_storage_path=workflow.actions.first().assign_storage_path, + assign_owner=workflow.actions.first().assign_owner, + ) + template.assign_tags.set(workflow.actions.first().assign_tags.all()) + template.assign_view_users.set(workflow.actions.first().assign_view_users.all()) + template.assign_view_groups.set( + workflow.actions.first().assign_view_groups.all(), + ) + template.assign_change_users.set( + workflow.actions.first().assign_change_users.all(), + ) + template.assign_change_groups.set( + workflow.actions.first().assign_change_groups.all(), + ) + template.assign_custom_fields.set( + workflow.actions.first().assign_custom_fields.all(), + ) + template.save() + + +def delete_consumption_template_content_type(apps, schema_editor): + with transaction.atomic(): + apps.get_model("contenttypes", "ContentType").objects.filter( + app_label="documents", + model="consumptiontemplate", + ).delete() + + +def undelete_consumption_template_content_type(apps, schema_editor): + apps.get_model("contenttypes", "ContentType").objects.create( + app_label="documents", + model="consumptiontemplate", + ) + + +class Migration(migrations.Migration): + dependencies = [ + ("paperless_mail", "0023_remove_mailrule_filter_attachment_filename_and_more"), + migrations.swappable_dependency(settings.AUTH_USER_MODEL), + ("auth", "0012_alter_user_first_name_max_length"), + ("documents", "1043_alter_savedviewfilterrule_rule_type"), + ] + + operations = [ + migrations.CreateModel( + name="Workflow", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ( + "name", + models.CharField(max_length=256, unique=True, verbose_name="name"), + ), + ("order", models.IntegerField(default=0, verbose_name="order")), + ( + "enabled", + models.BooleanField(default=True, verbose_name="enabled"), + ), + ], + ), + migrations.CreateModel( + name="WorkflowAction", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ( + "type", + models.PositiveIntegerField( + choices=[(1, "Assignment")], + default=1, + verbose_name="Workflow Action Type", + ), + ), + ( + "assign_title", + models.CharField( + blank=True, + help_text="Assign a document title, can include some placeholders, see documentation.", + max_length=256, + null=True, + verbose_name="assign title", + ), + ), + ( + "assign_change_groups", + models.ManyToManyField( + blank=True, + related_name="+", + to="auth.group", + verbose_name="grant change permissions to these groups", + ), + ), + ( + "assign_change_users", + models.ManyToManyField( + blank=True, + related_name="+", + to=settings.AUTH_USER_MODEL, + verbose_name="grant change permissions to these users", + ), + ), + ( + "assign_correspondent", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + to="documents.correspondent", + verbose_name="assign this correspondent", + ), + ), + ( + "assign_custom_fields", + models.ManyToManyField( + blank=True, + related_name="+", + to="documents.customfield", + verbose_name="assign these custom fields", + ), + ), + ( + "assign_document_type", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + to="documents.documenttype", + verbose_name="assign this document type", + ), + ), + ( + "assign_owner", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + related_name="+", + to=settings.AUTH_USER_MODEL, + verbose_name="assign this owner", + ), + ), + ( + "assign_storage_path", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + to="documents.storagepath", + verbose_name="assign this storage path", + ), + ), + ( + "assign_tags", + models.ManyToManyField( + blank=True, + to="documents.tag", + verbose_name="assign this tag", + ), + ), + ( + "assign_view_groups", + models.ManyToManyField( + blank=True, + related_name="+", + to="auth.group", + verbose_name="grant view permissions to these groups", + ), + ), + ( + "assign_view_users", + models.ManyToManyField( + blank=True, + related_name="+", + to=settings.AUTH_USER_MODEL, + verbose_name="grant view permissions to these users", + ), + ), + ], + options={ + "verbose_name": "workflow action", + "verbose_name_plural": "workflow actions", + }, + ), + migrations.CreateModel( + name="WorkflowTrigger", + fields=[ + ( + "id", + models.AutoField( + auto_created=True, + primary_key=True, + serialize=False, + verbose_name="ID", + ), + ), + ( + "type", + models.PositiveIntegerField( + choices=[ + (1, "Consumption Started"), + (2, "Document Added"), + (3, "Document Updated"), + ], + default=1, + verbose_name="Workflow Trigger Type", + ), + ), + ( + "sources", + multiselectfield.db.fields.MultiSelectField( + choices=[ + (1, "Consume Folder"), + (2, "Api Upload"), + (3, "Mail Fetch"), + ], + default="1,2,3", + max_length=5, + ), + ), + ( + "filter_path", + models.CharField( + blank=True, + help_text="Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive.", + max_length=256, + null=True, + verbose_name="filter path", + ), + ), + ( + "filter_filename", + models.CharField( + blank=True, + help_text="Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive.", + max_length=256, + null=True, + verbose_name="filter filename", + ), + ), + ( + "filter_mailrule", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + to="paperless_mail.mailrule", + verbose_name="filter documents from this mail rule", + ), + ), + ( + "matching_algorithm", + models.PositiveIntegerField( + choices=[ + (0, "None"), + (1, "Any word"), + (2, "All words"), + (3, "Exact match"), + (4, "Regular expression"), + (5, "Fuzzy word"), + ], + default=0, + verbose_name="matching algorithm", + ), + ), + ( + "match", + models.CharField(blank=True, max_length=256, verbose_name="match"), + ), + ( + "is_insensitive", + models.BooleanField(default=True, verbose_name="is insensitive"), + ), + ( + "filter_has_tags", + models.ManyToManyField( + blank=True, + to="documents.tag", + verbose_name="has these tag(s)", + ), + ), + ( + "filter_has_document_type", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + to="documents.documenttype", + verbose_name="has this document type", + ), + ), + ( + "filter_has_correspondent", + models.ForeignKey( + blank=True, + null=True, + on_delete=django.db.models.deletion.SET_NULL, + to="documents.correspondent", + verbose_name="has this correspondent", + ), + ), + ], + options={ + "verbose_name": "workflow trigger", + "verbose_name_plural": "workflow triggers", + }, + ), + migrations.RunPython( + add_workflow_permissions, + remove_workflow_permissions, + ), + migrations.AddField( + model_name="workflow", + name="actions", + field=models.ManyToManyField( + related_name="workflows", + to="documents.workflowaction", + verbose_name="actions", + ), + ), + migrations.AddField( + model_name="workflow", + name="triggers", + field=models.ManyToManyField( + related_name="workflows", + to="documents.workflowtrigger", + verbose_name="triggers", + ), + ), + migrations.RunPython( + migrate_consumption_templates, + unmigrate_consumption_templates, + ), + migrations.DeleteModel("ConsumptionTemplate"), + migrations.RunPython( + delete_consumption_template_content_type, + undelete_consumption_template_content_type, + ), + ] diff --git a/src/documents/models.py b/src/documents/models.py index d95bf46e1..b943fa2b5 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -888,15 +888,31 @@ if settings.AUDIT_LOG_ENABLED: auditlog.register(CustomFieldInstance) -class ConsumptionTemplate(models.Model): +class WorkflowTrigger(models.Model): + class WorkflowTriggerMatching(models.IntegerChoices): + # No auto matching + NONE = MatchingModel.MATCH_NONE, _("None") + ANY = MatchingModel.MATCH_ANY, _("Any word") + ALL = MatchingModel.MATCH_ALL, _("All words") + LITERAL = MatchingModel.MATCH_LITERAL, _("Exact match") + REGEX = MatchingModel.MATCH_REGEX, _("Regular expression") + FUZZY = MatchingModel.MATCH_FUZZY, _("Fuzzy word") + + class WorkflowTriggerType(models.IntegerChoices): + CONSUMPTION = 1, _("Consumption Started") + DOCUMENT_ADDED = 2, _("Document Added") + DOCUMENT_UPDATED = 3, _("Document Updated") + class DocumentSourceChoices(models.IntegerChoices): CONSUME_FOLDER = DocumentSource.ConsumeFolder.value, _("Consume Folder") API_UPLOAD = DocumentSource.ApiUpload.value, _("Api Upload") MAIL_FETCH = DocumentSource.MailFetch.value, _("Mail Fetch") - name = models.CharField(_("name"), max_length=256, unique=True) - - order = models.IntegerField(_("order"), default=0) + type = models.PositiveIntegerField( + _("Workflow Trigger Type"), + choices=WorkflowTriggerType.choices, + default=WorkflowTriggerType.CONSUMPTION, + ) sources = MultiSelectField( max_length=5, @@ -936,6 +952,56 @@ class ConsumptionTemplate(models.Model): verbose_name=_("filter documents from this mail rule"), ) + match = models.CharField(_("match"), max_length=256, blank=True) + + matching_algorithm = models.PositiveIntegerField( + _("matching algorithm"), + choices=WorkflowTriggerMatching.choices, + default=WorkflowTriggerMatching.NONE, + ) + + is_insensitive = models.BooleanField(_("is insensitive"), default=True) + + filter_has_tags = models.ManyToManyField( + Tag, + blank=True, + verbose_name=_("has these tag(s)"), + ) + + filter_has_document_type = models.ForeignKey( + DocumentType, + null=True, + blank=True, + on_delete=models.SET_NULL, + verbose_name=_("has this document type"), + ) + + filter_has_correspondent = models.ForeignKey( + Correspondent, + null=True, + blank=True, + on_delete=models.SET_NULL, + verbose_name=_("has this correspondent"), + ) + + class Meta: + verbose_name = _("workflow trigger") + verbose_name_plural = _("workflow triggers") + + def __str__(self): + return f"WorkflowTrigger {self.pk}" + + +class WorkflowAction(models.Model): + class WorkflowActionType(models.IntegerChoices): + ASSIGNMENT = 1, _("Assignment") + + type = models.PositiveIntegerField( + _("Workflow Action Type"), + choices=WorkflowActionType.choices, + default=WorkflowActionType.ASSIGNMENT, + ) + assign_title = models.CharField( _("assign title"), max_length=256, @@ -1022,8 +1088,33 @@ class ConsumptionTemplate(models.Model): ) class Meta: - verbose_name = _("consumption template") - verbose_name_plural = _("consumption templates") + verbose_name = _("workflow action") + verbose_name_plural = _("workflow actions") def __str__(self): - return f"{self.name}" + return f"WorkflowAction {self.pk}" + + +class Workflow(models.Model): + name = models.CharField(_("name"), max_length=256, unique=True) + + order = models.IntegerField(_("order"), default=0) + + triggers = models.ManyToManyField( + WorkflowTrigger, + related_name="workflows", + blank=False, + verbose_name=_("triggers"), + ) + + actions = models.ManyToManyField( + WorkflowAction, + related_name="workflows", + blank=False, + verbose_name=_("actions"), + ) + + enabled = models.BooleanField(_("enabled"), default=True) + + def __str__(self): + return f"Workflow: {self.name}" diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index c65d4d2ff..b1dd9aee9 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -27,7 +27,6 @@ from rest_framework.fields import SerializerMethodField from documents import bulk_edit from documents.data_models import DocumentSource -from documents.models import ConsumptionTemplate from documents.models import Correspondent from documents.models import CustomField from documents.models import CustomFieldInstance @@ -41,6 +40,9 @@ from documents.models import ShareLink from documents.models import StoragePath from documents.models import Tag from documents.models import UiSettings +from documents.models import Workflow +from documents.models import WorkflowAction +from documents.models import WorkflowTrigger from documents.parsers import is_mime_type_supported from documents.permissions import get_groups_with_only_permission from documents.permissions import set_permissions_for_object @@ -1278,43 +1280,38 @@ class BulkEditObjectPermissionsSerializer(serializers.Serializer, SetPermissions return attrs -class ConsumptionTemplateSerializer(serializers.ModelSerializer): - order = serializers.IntegerField(required=False) +class WorkflowTriggerSerializer(serializers.ModelSerializer): + id = serializers.IntegerField(required=False, allow_null=True) sources = fields.MultipleChoiceField( - choices=ConsumptionTemplate.DocumentSourceChoices.choices, - allow_empty=False, + choices=WorkflowTrigger.DocumentSourceChoices.choices, + allow_empty=True, default={ DocumentSource.ConsumeFolder, DocumentSource.ApiUpload, DocumentSource.MailFetch, }, ) - assign_correspondent = CorrespondentField(allow_null=True, required=False) - assign_tags = TagsField(many=True, allow_null=True, required=False) - assign_document_type = DocumentTypeField(allow_null=True, required=False) - assign_storage_path = StoragePathField(allow_null=True, required=False) + + type = serializers.ChoiceField( + choices=WorkflowTrigger.WorkflowTriggerType.choices, + label="Trigger Type", + ) class Meta: - model = ConsumptionTemplate + model = WorkflowTrigger fields = [ "id", - "name", - "order", "sources", + "type", "filter_path", "filter_filename", "filter_mailrule", - "assign_title", - "assign_tags", - "assign_correspondent", - "assign_document_type", - "assign_storage_path", - "assign_owner", - "assign_view_users", - "assign_view_groups", - "assign_change_users", - "assign_change_groups", - "assign_custom_fields", + "matching_algorithm", + "match", + "is_insensitive", + "filter_has_tags", + "filter_has_correspondent", + "filter_has_document_type", ] def validate(self, attrs): @@ -1322,12 +1319,6 @@ class ConsumptionTemplateSerializer(serializers.ModelSerializer): attrs["sources"] = {DocumentSource.MailFetch.value} # Empty strings treated as None to avoid unexpected behavior - if ( - "assign_title" in attrs - and attrs["assign_title"] is not None - and len(attrs["assign_title"]) == 0 - ): - attrs["assign_title"] = None if ( "filter_filename" in attrs and attrs["filter_filename"] is not None @@ -1342,7 +1333,8 @@ class ConsumptionTemplateSerializer(serializers.ModelSerializer): attrs["filter_path"] = None if ( - "filter_mailrule" not in attrs + attrs["type"] == WorkflowTrigger.WorkflowTriggerType.CONSUMPTION + and "filter_mailrule" not in attrs and ("filter_filename" not in attrs or attrs["filter_filename"] is None) and ("filter_path" not in attrs or attrs["filter_path"] is None) ): @@ -1351,3 +1343,144 @@ class ConsumptionTemplateSerializer(serializers.ModelSerializer): ) return attrs + + +class WorkflowActionSerializer(serializers.ModelSerializer): + id = serializers.IntegerField(required=False, allow_null=True) + assign_correspondent = CorrespondentField(allow_null=True, required=False) + assign_tags = TagsField(many=True, allow_null=True, required=False) + assign_document_type = DocumentTypeField(allow_null=True, required=False) + assign_storage_path = StoragePathField(allow_null=True, required=False) + + class Meta: + model = WorkflowAction + fields = [ + "id", + "type", + "assign_title", + "assign_tags", + "assign_correspondent", + "assign_document_type", + "assign_storage_path", + "assign_owner", + "assign_view_users", + "assign_view_groups", + "assign_change_users", + "assign_change_groups", + "assign_custom_fields", + ] + + def validate(self, attrs): + # Empty strings treated as None to avoid unexpected behavior + if ( + "assign_title" in attrs + and attrs["assign_title"] is not None + and len(attrs["assign_title"]) == 0 + ): + attrs["assign_title"] = None + + return attrs + + +class WorkflowSerializer(serializers.ModelSerializer): + order = serializers.IntegerField(required=False) + + triggers = WorkflowTriggerSerializer(many=True) + actions = WorkflowActionSerializer(many=True) + + class Meta: + model = Workflow + fields = [ + "id", + "name", + "order", + "enabled", + "triggers", + "actions", + ] + + def update_triggers_and_actions(self, instance: Workflow, triggers, actions): + set_triggers = [] + set_actions = [] + + if triggers is not None: + for trigger in triggers: + filter_has_tags = trigger.pop("filter_has_tags", None) + trigger_instance, _ = WorkflowTrigger.objects.update_or_create( + id=trigger["id"] if "id" in trigger else None, + defaults=trigger, + ) + if filter_has_tags is not None: + trigger_instance.filter_has_tags.set(filter_has_tags) + set_triggers.append(trigger_instance) + + if actions is not None: + for action in actions: + assign_tags = action.pop("assign_tags", None) + assign_view_users = action.pop("assign_view_users", None) + assign_view_groups = action.pop("assign_view_groups", None) + assign_change_users = action.pop("assign_change_users", None) + assign_change_groups = action.pop("assign_change_groups", None) + assign_custom_fields = action.pop("assign_custom_fields", None) + action_instance, _ = WorkflowAction.objects.update_or_create( + id=action["id"] if "id" in action else None, + defaults=action, + ) + if assign_tags is not None: + action_instance.assign_tags.set(assign_tags) + if assign_view_users is not None: + action_instance.assign_view_users.set(assign_view_users) + if assign_view_groups is not None: + action_instance.assign_view_groups.set(assign_view_groups) + if assign_change_users is not None: + action_instance.assign_change_users.set(assign_change_users) + if assign_change_groups is not None: + action_instance.assign_change_groups.set(assign_change_groups) + if assign_custom_fields is not None: + action_instance.assign_custom_fields.set(assign_custom_fields) + set_actions.append(action_instance) + + instance.triggers.set(set_triggers) + instance.actions.set(set_actions) + instance.save() + + def prune_triggers_and_actions(self): + """ + ManyToMany fields dont support e.g. on_delete so we need to discard unattached + triggers and actionas manually + """ + for trigger in WorkflowTrigger.objects.all(): + if trigger.workflows.all().count() == 0: + trigger.delete() + + for action in WorkflowAction.objects.all(): + if action.workflows.all().count() == 0: + action.delete() + + def create(self, validated_data) -> Workflow: + if "triggers" in validated_data: + triggers = validated_data.pop("triggers") + + if "actions" in validated_data: + actions = validated_data.pop("actions") + + instance = super().create(validated_data) + + self.update_triggers_and_actions(instance, triggers, actions) + + return instance + + def update(self, instance: Workflow, validated_data) -> Workflow: + if "triggers" in validated_data: + triggers = validated_data.pop("triggers") + + if "actions" in validated_data: + actions = validated_data.pop("actions") + + instance = super().update(instance, validated_data) + + self.update_triggers_and_actions(instance, triggers, actions) + + self.prune_triggers_and_actions() + + return instance diff --git a/src/documents/signals/__init__.py b/src/documents/signals/__init__.py index 393630008..fbb55d9fe 100644 --- a/src/documents/signals/__init__.py +++ b/src/documents/signals/__init__.py @@ -3,3 +3,4 @@ from django.dispatch import Signal document_consumption_started = Signal() document_consumption_finished = Signal() document_consumer_declaration = Signal() +document_updated = Signal() diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index 117e3c38d..d536a3967 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -24,14 +24,19 @@ from filelock import FileLock from documents import matching from documents.classifier import DocumentClassifier +from documents.consumer import parse_doc_title_w_placeholders from documents.file_handling import create_source_path_directory from documents.file_handling import delete_empty_directories from documents.file_handling import generate_unique_filename +from documents.models import CustomFieldInstance from documents.models import Document from documents.models import MatchingModel from documents.models import PaperlessTask from documents.models import Tag +from documents.models import Workflow +from documents.models import WorkflowTrigger from documents.permissions import get_objects_for_user_owner_aware +from documents.permissions import set_permissions_for_object logger = logging.getLogger("paperless.handlers") @@ -514,6 +519,105 @@ def add_to_index(sender, document, **kwargs): index.add_or_update_document(document) +def run_workflow_added(sender, document: Document, logging_group=None, **kwargs): + run_workflow( + WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + document, + logging_group, + ) + + +def run_workflow_updated(sender, document: Document, logging_group=None, **kwargs): + run_workflow( + WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED, + document, + logging_group, + ) + + +def run_workflow( + trigger_type: WorkflowTrigger.WorkflowTriggerType, + document: Document, + logging_group=None, +): + for workflow in Workflow.objects.filter( + enabled=True, + triggers__type=trigger_type, + ).order_by("order"): + if matching.document_matches_workflow( + document, + workflow, + trigger_type, + ): + for action in workflow.actions.all(): + logger.info( + f"Applying {action} from {workflow}", + extra={"group": logging_group}, + ) + if action.assign_tags.all().count() > 0: + document.tags.add(*action.assign_tags.all()) + + if action.assign_correspondent is not None: + document.correspondent = action.assign_correspondent + + if action.assign_document_type is not None: + document.document_type = action.assign_document_type + + if action.assign_storage_path is not None: + document.storage_path = action.assign_storage_path + + if action.assign_owner is not None: + document.owner = action.assign_owner + + if action.assign_title is not None: + document.title = parse_doc_title_w_placeholders( + action.assign_title, + document.correspondent.name + if document.correspondent is not None + else "", + document.document_type.name + if document.document_type is not None + else "", + document.owner.username if document.owner is not None else "", + document.added, + document.original_filename, + document.created, + ) + + if ( + action.assign_view_users is not None + or action.assign_view_groups is not None + or action.assign_change_users is not None + or action.assign_change_groups is not None + ): + permissions = { + "view": { + "users": action.assign_view_users.all().values_list("id") + or [], + "groups": action.assign_view_groups.all().values_list("id") + or [], + }, + "change": { + "users": action.assign_change_users.all().values_list("id") + or [], + "groups": action.assign_change_groups.all().values_list( + "id", + ) + or [], + }, + } + set_permissions_for_object(permissions=permissions, object=document) + + if action.assign_custom_fields is not None: + for field in action.assign_custom_fields.all(): + CustomFieldInstance.objects.create( + field=field, + document=document, + ) # adds to document + + document.save() + + @before_task_publish.connect def before_task_publish_handler(sender=None, headers=None, body=None, **kwargs): """ diff --git a/src/documents/tasks.py b/src/documents/tasks.py index d0728a719..19e40db5b 100644 --- a/src/documents/tasks.py +++ b/src/documents/tasks.py @@ -36,6 +36,7 @@ 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 documents.signals import document_updated if settings.AUDIT_LOG_ENABLED: import json @@ -157,7 +158,7 @@ def consume_file( overrides.asn = reader.asn logger.info(f"Found ASN in barcode: {overrides.asn}") - template_overrides = Consumer().get_template_overrides( + template_overrides = Consumer().get_workflow_overrides( input_doc=input_doc, ) @@ -215,6 +216,11 @@ def bulk_update_documents(document_ids): ix = index.open_index() for doc in documents: + document_updated.send( + sender=None, + document=doc, + logging_group=uuid.uuid4(), + ) post_save.send(Document, instance=doc, created=False) with AsyncWriter(ix) as writer: diff --git a/src/documents/tests/test_api_consumption_templates.py b/src/documents/tests/test_api_consumption_templates.py deleted file mode 100644 index e32294050..000000000 --- a/src/documents/tests/test_api_consumption_templates.py +++ /dev/null @@ -1,236 +0,0 @@ -import json - -from django.contrib.auth.models import Group -from django.contrib.auth.models import User -from rest_framework import status -from rest_framework.test import APITestCase - -from documents.data_models import DocumentSource -from documents.models import ConsumptionTemplate -from documents.models import Correspondent -from documents.models import CustomField -from documents.models import DocumentType -from documents.models import StoragePath -from documents.models import Tag -from documents.tests.utils import DirectoriesMixin -from paperless_mail.models import MailAccount -from paperless_mail.models import MailRule - - -class TestApiConsumptionTemplates(DirectoriesMixin, APITestCase): - ENDPOINT = "/api/consumption_templates/" - - def setUp(self) -> None: - super().setUp() - - user = User.objects.create_superuser(username="temp_admin") - self.client.force_authenticate(user=user) - self.user2 = User.objects.create(username="user2") - self.user3 = User.objects.create(username="user3") - self.group1 = Group.objects.create(name="group1") - - self.c = Correspondent.objects.create(name="Correspondent Name") - self.c2 = Correspondent.objects.create(name="Correspondent Name 2") - self.dt = DocumentType.objects.create(name="DocType Name") - self.t1 = Tag.objects.create(name="t1") - self.t2 = Tag.objects.create(name="t2") - self.t3 = Tag.objects.create(name="t3") - self.sp = StoragePath.objects.create(path="/test/") - self.cf1 = CustomField.objects.create(name="Custom Field 1", data_type="string") - self.cf2 = CustomField.objects.create( - name="Custom Field 2", - data_type="integer", - ) - - self.ct = ConsumptionTemplate.objects.create( - name="Template 1", - order=0, - sources=f"{int(DocumentSource.ApiUpload)},{int(DocumentSource.ConsumeFolder)},{int(DocumentSource.MailFetch)}", - filter_filename="*simple*", - filter_path="*/samples/*", - assign_title="Doc from {correspondent}", - assign_correspondent=self.c, - assign_document_type=self.dt, - assign_storage_path=self.sp, - assign_owner=self.user2, - ) - self.ct.assign_tags.add(self.t1) - self.ct.assign_tags.add(self.t2) - self.ct.assign_tags.add(self.t3) - self.ct.assign_view_users.add(self.user3.pk) - self.ct.assign_view_groups.add(self.group1.pk) - self.ct.assign_change_users.add(self.user3.pk) - self.ct.assign_change_groups.add(self.group1.pk) - self.ct.assign_custom_fields.add(self.cf1.pk) - self.ct.assign_custom_fields.add(self.cf2.pk) - self.ct.save() - - def test_api_get_consumption_template(self): - """ - GIVEN: - - API request to get all consumption template - WHEN: - - API is called - THEN: - - Existing consumption templates are returned - """ - response = self.client.get(self.ENDPOINT, format="json") - - self.assertEqual(response.status_code, status.HTTP_200_OK) - self.assertEqual(response.data["count"], 1) - - resp_consumption_template = response.data["results"][0] - self.assertEqual(resp_consumption_template["id"], self.ct.id) - self.assertEqual( - resp_consumption_template["assign_correspondent"], - self.ct.assign_correspondent.pk, - ) - - def test_api_create_consumption_template(self): - """ - GIVEN: - - API request to create a consumption template - WHEN: - - API is called - THEN: - - Correct HTTP response - - New template is created - """ - response = self.client.post( - self.ENDPOINT, - json.dumps( - { - "name": "Template 2", - "order": 1, - "sources": [DocumentSource.ApiUpload], - "filter_filename": "*test*", - }, - ), - content_type="application/json", - ) - self.assertEqual(response.status_code, status.HTTP_201_CREATED) - self.assertEqual(ConsumptionTemplate.objects.count(), 2) - - def test_api_create_invalid_consumption_template(self): - """ - GIVEN: - - API request to create a consumption template - - Neither file name nor path filter are specified - WHEN: - - API is called - THEN: - - Correct HTTP 400 response - - No template is created - """ - response = self.client.post( - self.ENDPOINT, - json.dumps( - { - "name": "Template 2", - "order": 1, - "sources": [DocumentSource.ApiUpload], - }, - ), - content_type="application/json", - ) - self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) - self.assertEqual(ConsumptionTemplate.objects.count(), 1) - - def test_api_create_consumption_template_empty_fields(self): - """ - GIVEN: - - API request to create a consumption template - - Path or filename filter or assign title are empty string - WHEN: - - API is called - THEN: - - Template is created but filter or title assignment is not set if "" - """ - response = self.client.post( - self.ENDPOINT, - json.dumps( - { - "name": "Template 2", - "order": 1, - "sources": [DocumentSource.ApiUpload], - "filter_filename": "*test*", - "filter_path": "", - "assign_title": "", - }, - ), - content_type="application/json", - ) - self.assertEqual(response.status_code, status.HTTP_201_CREATED) - ct = ConsumptionTemplate.objects.get(name="Template 2") - self.assertEqual(ct.filter_filename, "*test*") - self.assertIsNone(ct.filter_path) - self.assertIsNone(ct.assign_title) - - response = self.client.post( - self.ENDPOINT, - json.dumps( - { - "name": "Template 3", - "order": 1, - "sources": [DocumentSource.ApiUpload], - "filter_filename": "", - "filter_path": "*/test/*", - }, - ), - content_type="application/json", - ) - self.assertEqual(response.status_code, status.HTTP_201_CREATED) - ct2 = ConsumptionTemplate.objects.get(name="Template 3") - self.assertEqual(ct2.filter_path, "*/test/*") - self.assertIsNone(ct2.filter_filename) - - def test_api_create_consumption_template_with_mailrule(self): - """ - GIVEN: - - API request to create a consumption template with a mail rule but no MailFetch source - WHEN: - - API is called - THEN: - - New template is created with MailFetch as source - """ - account1 = MailAccount.objects.create( - name="Email1", - username="username1", - password="password1", - imap_server="server.example.com", - imap_port=443, - imap_security=MailAccount.ImapSecurity.SSL, - character_set="UTF-8", - ) - rule1 = MailRule.objects.create( - name="Rule1", - account=account1, - folder="INBOX", - filter_from="from@example.com", - filter_to="someone@somewhere.com", - filter_subject="subject", - filter_body="body", - filter_attachment_filename_include="file.pdf", - maximum_age=30, - action=MailRule.MailAction.MARK_READ, - assign_title_from=MailRule.TitleSource.FROM_SUBJECT, - assign_correspondent_from=MailRule.CorrespondentSource.FROM_NOTHING, - order=0, - attachment_type=MailRule.AttachmentProcessing.ATTACHMENTS_ONLY, - ) - response = self.client.post( - self.ENDPOINT, - json.dumps( - { - "name": "Template 2", - "order": 1, - "sources": [DocumentSource.ApiUpload], - "filter_mailrule": rule1.pk, - }, - ), - content_type="application/json", - ) - self.assertEqual(response.status_code, status.HTTP_201_CREATED) - self.assertEqual(ConsumptionTemplate.objects.count(), 2) - ct = ConsumptionTemplate.objects.get(name="Template 2") - self.assertEqual(ct.sources, [int(DocumentSource.MailFetch).__str__()]) diff --git a/src/documents/tests/test_api_workflows.py b/src/documents/tests/test_api_workflows.py new file mode 100644 index 000000000..d7a7ad6ff --- /dev/null +++ b/src/documents/tests/test_api_workflows.py @@ -0,0 +1,435 @@ +import json + +from django.contrib.auth.models import Group +from django.contrib.auth.models import User +from rest_framework import status +from rest_framework.test import APITestCase + +from documents.data_models import DocumentSource +from documents.models import Correspondent +from documents.models import CustomField +from documents.models import DocumentType +from documents.models import StoragePath +from documents.models import Tag +from documents.models import Workflow +from documents.models import WorkflowAction +from documents.models import WorkflowTrigger +from documents.tests.utils import DirectoriesMixin +from paperless_mail.models import MailAccount +from paperless_mail.models import MailRule + + +class TestApiWorkflows(DirectoriesMixin, APITestCase): + ENDPOINT = "/api/workflows/" + ENDPOINT_TRIGGERS = "/api/workflow_triggers/" + ENDPOINT_ACTIONS = "/api/workflow_actions/" + + def setUp(self) -> None: + super().setUp() + + user = User.objects.create_superuser(username="temp_admin") + self.client.force_authenticate(user=user) + self.user2 = User.objects.create(username="user2") + self.user3 = User.objects.create(username="user3") + self.group1 = Group.objects.create(name="group1") + + self.c = Correspondent.objects.create(name="Correspondent Name") + self.c2 = Correspondent.objects.create(name="Correspondent Name 2") + self.dt = DocumentType.objects.create(name="DocType Name") + self.dt2 = DocumentType.objects.create(name="DocType Name 2") + self.t1 = Tag.objects.create(name="t1") + self.t2 = Tag.objects.create(name="t2") + self.t3 = Tag.objects.create(name="t3") + self.sp = StoragePath.objects.create(name="Storage Path 1", path="/test/") + self.sp2 = StoragePath.objects.create(name="Storage Path 2", path="/test2/") + self.cf1 = CustomField.objects.create(name="Custom Field 1", data_type="string") + self.cf2 = CustomField.objects.create( + name="Custom Field 2", + data_type="integer", + ) + + self.trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=f"{int(DocumentSource.ApiUpload)},{int(DocumentSource.ConsumeFolder)},{int(DocumentSource.MailFetch)}", + filter_filename="*simple*", + filter_path="*/samples/*", + ) + self.action = WorkflowAction.objects.create( + assign_title="Doc from {correspondent}", + assign_correspondent=self.c, + assign_document_type=self.dt, + assign_storage_path=self.sp, + assign_owner=self.user2, + ) + self.action.assign_tags.add(self.t1) + self.action.assign_tags.add(self.t2) + self.action.assign_tags.add(self.t3) + self.action.assign_view_users.add(self.user3.pk) + self.action.assign_view_groups.add(self.group1.pk) + self.action.assign_change_users.add(self.user3.pk) + self.action.assign_change_groups.add(self.group1.pk) + self.action.assign_custom_fields.add(self.cf1.pk) + self.action.assign_custom_fields.add(self.cf2.pk) + self.action.save() + + self.workflow = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + self.workflow.triggers.add(self.trigger) + self.workflow.actions.add(self.action) + self.workflow.save() + + def test_api_get_workflow(self): + """ + GIVEN: + - API request to get all workflows + WHEN: + - API is called + THEN: + - Existing workflows are returned + """ + response = self.client.get(self.ENDPOINT, format="json") + + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual(response.data["count"], 1) + + resp_workflow = response.data["results"][0] + self.assertEqual(resp_workflow["id"], self.workflow.id) + self.assertEqual( + resp_workflow["actions"][0]["assign_correspondent"], + self.action.assign_correspondent.pk, + ) + + def test_api_create_workflow(self): + """ + GIVEN: + - API request to create a workflow, trigger and action separately + WHEN: + - API is called + THEN: + - Correct HTTP response + - New workflow, trigger and action are created + """ + trigger_response = self.client.post( + self.ENDPOINT_TRIGGERS, + json.dumps( + { + "type": WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + "sources": [DocumentSource.ApiUpload], + "filter_filename": "*", + }, + ), + content_type="application/json", + ) + self.assertEqual(trigger_response.status_code, status.HTTP_201_CREATED) + + action_response = self.client.post( + self.ENDPOINT_ACTIONS, + json.dumps( + { + "assign_title": "Action Title", + }, + ), + content_type="application/json", + ) + self.assertEqual(action_response.status_code, status.HTTP_201_CREATED) + + response = self.client.post( + self.ENDPOINT, + json.dumps( + { + "name": "Workflow 2", + "order": 1, + "triggers": [ + { + "id": trigger_response.data["id"], + "sources": [DocumentSource.ApiUpload], + "type": trigger_response.data["type"], + "filter_filename": trigger_response.data["filter_filename"], + }, + ], + "actions": [ + { + "id": action_response.data["id"], + "assign_title": action_response.data["assign_title"], + }, + ], + }, + ), + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_201_CREATED) + self.assertEqual(Workflow.objects.count(), 2) + + def test_api_create_workflow_nested(self): + """ + GIVEN: + - API request to create a workflow with nested trigger and action + WHEN: + - API is called + THEN: + - Correct HTTP response + - New workflow, trigger and action are created + """ + + response = self.client.post( + self.ENDPOINT, + json.dumps( + { + "name": "Workflow 2", + "order": 1, + "triggers": [ + { + "sources": [DocumentSource.ApiUpload], + "type": WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + "filter_filename": "*", + "filter_path": "*/samples/*", + "filter_has_tags": [self.t1.id], + "filter_has_document_type": self.dt.id, + "filter_has_correspondent": self.c.id, + }, + ], + "actions": [ + { + "assign_title": "Action Title", + "assign_tags": [self.t2.id], + "assign_document_type": self.dt2.id, + "assign_correspondent": self.c2.id, + "assign_storage_path": self.sp2.id, + "assign_owner": self.user2.id, + "assign_view_users": [self.user2.id], + "assign_view_groups": [self.group1.id], + "assign_change_users": [self.user2.id], + "assign_change_groups": [self.group1.id], + "assign_custom_fields": [self.cf2.id], + }, + ], + }, + ), + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_201_CREATED) + self.assertEqual(Workflow.objects.count(), 2) + + def test_api_create_invalid_workflow_trigger(self): + """ + GIVEN: + - API request to create a workflow trigger + - Neither type or file name nor path filter are specified + WHEN: + - API is called + THEN: + - Correct HTTP 400 response + - No objects are created + """ + response = self.client.post( + self.ENDPOINT_TRIGGERS, + json.dumps( + { + "sources": [DocumentSource.ApiUpload], + }, + ), + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) + + response = self.client.post( + self.ENDPOINT_TRIGGERS, + json.dumps( + { + "type": WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + "sources": [DocumentSource.ApiUpload], + }, + ), + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) + + self.assertEqual(WorkflowTrigger.objects.count(), 1) + + def test_api_create_workflow_trigger_action_empty_fields(self): + """ + GIVEN: + - API request to create a workflow trigger and action + - Path or filename filter or assign title are empty string + WHEN: + - API is called + THEN: + - Template is created but filter or title assignment is not set if "" + """ + response = self.client.post( + self.ENDPOINT_TRIGGERS, + json.dumps( + { + "type": WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + "sources": [DocumentSource.ApiUpload], + "filter_filename": "*test*", + "filter_path": "", + }, + ), + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_201_CREATED) + trigger = WorkflowTrigger.objects.get(id=response.data["id"]) + self.assertEqual(trigger.filter_filename, "*test*") + self.assertIsNone(trigger.filter_path) + + response = self.client.post( + self.ENDPOINT_ACTIONS, + json.dumps( + { + "assign_title": "", + }, + ), + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_201_CREATED) + action = WorkflowAction.objects.get(id=response.data["id"]) + self.assertIsNone(action.assign_title) + + response = self.client.post( + self.ENDPOINT_TRIGGERS, + json.dumps( + { + "type": WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + "sources": [DocumentSource.ApiUpload], + "filter_filename": "", + "filter_path": "*/test/*", + }, + ), + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_201_CREATED) + trigger2 = WorkflowTrigger.objects.get(id=response.data["id"]) + self.assertEqual(trigger2.filter_path, "*/test/*") + self.assertIsNone(trigger2.filter_filename) + + def test_api_create_workflow_trigger_with_mailrule(self): + """ + GIVEN: + - API request to create a workflow trigger with a mail rule but no MailFetch source + WHEN: + - API is called + THEN: + - New trigger is created with MailFetch as source + """ + account1 = MailAccount.objects.create( + name="Email1", + username="username1", + password="password1", + imap_server="server.example.com", + imap_port=443, + imap_security=MailAccount.ImapSecurity.SSL, + character_set="UTF-8", + ) + rule1 = MailRule.objects.create( + name="Rule1", + account=account1, + folder="INBOX", + filter_from="from@example.com", + filter_to="someone@somewhere.com", + filter_subject="subject", + filter_body="body", + filter_attachment_filename_include="file.pdf", + maximum_age=30, + action=MailRule.MailAction.MARK_READ, + assign_title_from=MailRule.TitleSource.FROM_SUBJECT, + assign_correspondent_from=MailRule.CorrespondentSource.FROM_NOTHING, + order=0, + attachment_type=MailRule.AttachmentProcessing.ATTACHMENTS_ONLY, + ) + response = self.client.post( + self.ENDPOINT_TRIGGERS, + json.dumps( + { + "type": WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + "sources": [DocumentSource.ApiUpload], + "filter_mailrule": rule1.pk, + }, + ), + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_201_CREATED) + self.assertEqual(WorkflowTrigger.objects.count(), 2) + trigger = WorkflowTrigger.objects.get(id=response.data["id"]) + self.assertEqual(trigger.sources, [int(DocumentSource.MailFetch).__str__()]) + + def test_api_update_workflow_nested_triggers_actions(self): + """ + GIVEN: + - Existing workflow with trigger and action + WHEN: + - API request to update an existing workflow with nested triggers actions + THEN: + - Triggers and actions are updated + """ + + response = self.client.patch( + f"{self.ENDPOINT}{self.workflow.id}/", + json.dumps( + { + "name": "Workflow Updated", + "order": 1, + "triggers": [ + { + "type": WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + "filter_has_tags": [self.t1.id], + "filter_has_correspondent": self.c.id, + "filter_has_document_type": self.dt.id, + }, + ], + "actions": [ + { + "assign_title": "Action New Title", + }, + ], + }, + ), + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + workflow = Workflow.objects.get(id=response.data["id"]) + self.assertEqual(workflow.name, "Workflow Updated") + self.assertEqual(workflow.triggers.first().filter_has_tags.first(), self.t1) + self.assertEqual(workflow.actions.first().assign_title, "Action New Title") + + def test_api_auto_remove_orphaned_triggers_actions(self): + """ + GIVEN: + - Existing trigger and action + WHEN: + - API request is made which creates new trigger / actions + THEN: + - "Orphaned" triggers and actions are removed + """ + + response = self.client.patch( + f"{self.ENDPOINT}{self.workflow.id}/", + json.dumps( + { + "name": "Workflow Updated", + "order": 1, + "triggers": [ + { + "type": WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + "filter_has_tags": [self.t1.id], + "filter_has_correspondent": self.c.id, + "filter_has_document_type": self.dt.id, + }, + ], + "actions": [ + { + "assign_title": "Action New Title", + }, + ], + }, + ), + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + workflow = Workflow.objects.get(id=response.data["id"]) + self.assertEqual(WorkflowTrigger.objects.all().count(), 1) + self.assertNotEqual(workflow.triggers.first().id, self.trigger.id) + self.assertEqual(WorkflowAction.objects.all().count(), 1) + self.assertNotEqual(workflow.actions.first().id, self.action.id) diff --git a/src/documents/tests/test_consumption_templates.py b/src/documents/tests/test_consumption_templates.py deleted file mode 100644 index 6f671bfc4..000000000 --- a/src/documents/tests/test_consumption_templates.py +++ /dev/null @@ -1,539 +0,0 @@ -from pathlib import Path -from unittest import TestCase -from unittest import mock - -import pytest -from django.contrib.auth.models import Group -from django.contrib.auth.models import User - -from documents import tasks -from documents.data_models import ConsumableDocument -from documents.data_models import DocumentSource -from documents.models import ConsumptionTemplate -from documents.models import Correspondent -from documents.models import CustomField -from documents.models import DocumentType -from documents.models import StoragePath -from documents.models import Tag -from documents.tests.utils import DirectoriesMixin -from documents.tests.utils import FileSystemAssertsMixin -from paperless_mail.models import MailAccount -from paperless_mail.models import MailRule - - -@pytest.mark.django_db -class TestConsumptionTemplates(DirectoriesMixin, FileSystemAssertsMixin, TestCase): - SAMPLE_DIR = Path(__file__).parent / "samples" - - def setUp(self) -> None: - self.c = Correspondent.objects.create(name="Correspondent Name") - self.c2 = Correspondent.objects.create(name="Correspondent Name 2") - self.dt = DocumentType.objects.create(name="DocType Name") - self.t1 = Tag.objects.create(name="t1") - self.t2 = Tag.objects.create(name="t2") - self.t3 = Tag.objects.create(name="t3") - self.sp = StoragePath.objects.create(path="/test/") - self.cf1 = CustomField.objects.create(name="Custom Field 1", data_type="string") - self.cf2 = CustomField.objects.create( - name="Custom Field 2", - data_type="integer", - ) - - self.user2 = User.objects.create(username="user2") - self.user3 = User.objects.create(username="user3") - self.group1 = Group.objects.create(name="group1") - - account1 = MailAccount.objects.create( - name="Email1", - username="username1", - password="password1", - imap_server="server.example.com", - imap_port=443, - imap_security=MailAccount.ImapSecurity.SSL, - character_set="UTF-8", - ) - self.rule1 = MailRule.objects.create( - name="Rule1", - account=account1, - folder="INBOX", - filter_from="from@example.com", - filter_to="someone@somewhere.com", - filter_subject="subject", - filter_body="body", - filter_attachment_filename_include="file.pdf", - maximum_age=30, - action=MailRule.MailAction.MARK_READ, - assign_title_from=MailRule.TitleSource.NONE, - assign_correspondent_from=MailRule.CorrespondentSource.FROM_NOTHING, - order=0, - attachment_type=MailRule.AttachmentProcessing.ATTACHMENTS_ONLY, - assign_owner_from_rule=False, - ) - - return super().setUp() - - @mock.patch("documents.consumer.Consumer.try_consume_file") - def test_consumption_template_match(self, m): - """ - GIVEN: - - Existing consumption template - WHEN: - - File that matches is consumed - THEN: - - Template overrides are applied - """ - ct = ConsumptionTemplate.objects.create( - name="Template 1", - order=0, - sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", - filter_filename="*simple*", - filter_path="*/samples/*", - assign_title="Doc from {correspondent}", - assign_correspondent=self.c, - assign_document_type=self.dt, - assign_storage_path=self.sp, - assign_owner=self.user2, - ) - ct.assign_tags.add(self.t1) - ct.assign_tags.add(self.t2) - ct.assign_tags.add(self.t3) - ct.assign_view_users.add(self.user3.pk) - ct.assign_view_groups.add(self.group1.pk) - ct.assign_change_users.add(self.user3.pk) - ct.assign_change_groups.add(self.group1.pk) - ct.assign_custom_fields.add(self.cf1.pk) - ct.assign_custom_fields.add(self.cf2.pk) - ct.save() - - self.assertEqual(ct.__str__(), "Template 1") - - test_file = self.SAMPLE_DIR / "simple.pdf" - - with mock.patch("documents.tasks.async_to_sync"): - with self.assertLogs("paperless.matching", level="INFO") as cm: - tasks.consume_file( - ConsumableDocument( - source=DocumentSource.ConsumeFolder, - original_file=test_file, - ), - None, - ) - m.assert_called_once() - _, overrides = m.call_args - self.assertEqual(overrides["override_correspondent_id"], self.c.pk) - self.assertEqual(overrides["override_document_type_id"], self.dt.pk) - self.assertEqual( - overrides["override_tag_ids"], - [self.t1.pk, self.t2.pk, self.t3.pk], - ) - self.assertEqual(overrides["override_storage_path_id"], self.sp.pk) - self.assertEqual(overrides["override_owner_id"], self.user2.pk) - self.assertEqual(overrides["override_view_users"], [self.user3.pk]) - self.assertEqual(overrides["override_view_groups"], [self.group1.pk]) - self.assertEqual(overrides["override_change_users"], [self.user3.pk]) - self.assertEqual(overrides["override_change_groups"], [self.group1.pk]) - self.assertEqual( - overrides["override_title"], - "Doc from {correspondent}", - ) - self.assertEqual( - overrides["override_custom_field_ids"], - [self.cf1.pk, self.cf2.pk], - ) - - info = cm.output[0] - expected_str = f"Document matched template {ct}" - self.assertIn(expected_str, info) - - @mock.patch("documents.consumer.Consumer.try_consume_file") - def test_consumption_template_match_mailrule(self, m): - """ - GIVEN: - - Existing consumption template - WHEN: - - File that matches is consumed via mail rule - THEN: - - Template overrides are applied - """ - ct = ConsumptionTemplate.objects.create( - name="Template 1", - order=0, - sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", - filter_mailrule=self.rule1, - assign_title="Doc from {correspondent}", - assign_correspondent=self.c, - assign_document_type=self.dt, - assign_storage_path=self.sp, - assign_owner=self.user2, - ) - ct.assign_tags.add(self.t1) - ct.assign_tags.add(self.t2) - ct.assign_tags.add(self.t3) - ct.assign_view_users.add(self.user3.pk) - ct.assign_view_groups.add(self.group1.pk) - ct.assign_change_users.add(self.user3.pk) - ct.assign_change_groups.add(self.group1.pk) - ct.save() - - self.assertEqual(ct.__str__(), "Template 1") - - test_file = self.SAMPLE_DIR / "simple.pdf" - with mock.patch("documents.tasks.async_to_sync"): - with self.assertLogs("paperless.matching", level="INFO") as cm: - tasks.consume_file( - ConsumableDocument( - source=DocumentSource.ConsumeFolder, - original_file=test_file, - mailrule_id=self.rule1.pk, - ), - None, - ) - m.assert_called_once() - _, overrides = m.call_args - self.assertEqual(overrides["override_correspondent_id"], self.c.pk) - self.assertEqual(overrides["override_document_type_id"], self.dt.pk) - self.assertEqual( - overrides["override_tag_ids"], - [self.t1.pk, self.t2.pk, self.t3.pk], - ) - self.assertEqual(overrides["override_storage_path_id"], self.sp.pk) - self.assertEqual(overrides["override_owner_id"], self.user2.pk) - self.assertEqual(overrides["override_view_users"], [self.user3.pk]) - self.assertEqual(overrides["override_view_groups"], [self.group1.pk]) - self.assertEqual(overrides["override_change_users"], [self.user3.pk]) - self.assertEqual(overrides["override_change_groups"], [self.group1.pk]) - self.assertEqual( - overrides["override_title"], - "Doc from {correspondent}", - ) - - info = cm.output[0] - expected_str = f"Document matched template {ct}" - self.assertIn(expected_str, info) - - @mock.patch("documents.consumer.Consumer.try_consume_file") - def test_consumption_template_match_multiple(self, m): - """ - GIVEN: - - Multiple existing consumption template - WHEN: - - File that matches is consumed - THEN: - - Template overrides are applied with subsequent templates only overwriting empty values - or merging if multiple - """ - ct1 = ConsumptionTemplate.objects.create( - name="Template 1", - order=0, - sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", - filter_path="*/samples/*", - assign_title="Doc from {correspondent}", - assign_correspondent=self.c, - assign_document_type=self.dt, - ) - ct1.assign_tags.add(self.t1) - ct1.assign_tags.add(self.t2) - ct1.assign_view_users.add(self.user2) - ct1.save() - ct2 = ConsumptionTemplate.objects.create( - name="Template 2", - order=0, - sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", - filter_filename="*simple*", - assign_title="Doc from {correspondent}", - assign_correspondent=self.c2, - assign_storage_path=self.sp, - ) - ct2.assign_tags.add(self.t3) - ct1.assign_view_users.add(self.user3) - ct2.save() - - test_file = self.SAMPLE_DIR / "simple.pdf" - - with mock.patch("documents.tasks.async_to_sync"): - with self.assertLogs("paperless.matching", level="INFO") as cm: - tasks.consume_file( - ConsumableDocument( - source=DocumentSource.ConsumeFolder, - original_file=test_file, - ), - None, - ) - m.assert_called_once() - _, overrides = m.call_args - # template 1 - self.assertEqual(overrides["override_correspondent_id"], self.c.pk) - self.assertEqual(overrides["override_document_type_id"], self.dt.pk) - # template 2 - self.assertEqual(overrides["override_storage_path_id"], self.sp.pk) - # template 1 & 2 - self.assertEqual( - overrides["override_tag_ids"], - [self.t1.pk, self.t2.pk, self.t3.pk], - ) - self.assertEqual( - overrides["override_view_users"], - [self.user2.pk, self.user3.pk], - ) - - expected_str = f"Document matched template {ct1}" - self.assertIn(expected_str, cm.output[0]) - expected_str = f"Document matched template {ct2}" - self.assertIn(expected_str, cm.output[1]) - - @mock.patch("documents.consumer.Consumer.try_consume_file") - def test_consumption_template_no_match_filename(self, m): - """ - GIVEN: - - Existing consumption template - WHEN: - - File that does not match on filename is consumed - THEN: - - Template overrides are not applied - """ - ct = ConsumptionTemplate.objects.create( - name="Template 1", - order=0, - sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", - filter_filename="*foobar*", - filter_path=None, - assign_title="Doc from {correspondent}", - assign_correspondent=self.c, - assign_document_type=self.dt, - assign_storage_path=self.sp, - assign_owner=self.user2, - ) - - test_file = self.SAMPLE_DIR / "simple.pdf" - - with mock.patch("documents.tasks.async_to_sync"): - with self.assertLogs("paperless.matching", level="DEBUG") as cm: - tasks.consume_file( - ConsumableDocument( - source=DocumentSource.ConsumeFolder, - original_file=test_file, - ), - None, - ) - m.assert_called_once() - _, overrides = m.call_args - self.assertIsNone(overrides["override_correspondent_id"]) - self.assertIsNone(overrides["override_document_type_id"]) - self.assertIsNone(overrides["override_tag_ids"]) - self.assertIsNone(overrides["override_storage_path_id"]) - self.assertIsNone(overrides["override_owner_id"]) - self.assertIsNone(overrides["override_view_users"]) - self.assertIsNone(overrides["override_view_groups"]) - self.assertIsNone(overrides["override_change_users"]) - self.assertIsNone(overrides["override_change_groups"]) - self.assertIsNone(overrides["override_title"]) - - expected_str = f"Document did not match template {ct}" - self.assertIn(expected_str, cm.output[0]) - expected_str = f"Document filename {test_file.name} does not match" - self.assertIn(expected_str, cm.output[1]) - - @mock.patch("documents.consumer.Consumer.try_consume_file") - def test_consumption_template_no_match_path(self, m): - """ - GIVEN: - - Existing consumption template - WHEN: - - File that does not match on path is consumed - THEN: - - Template overrides are not applied - """ - ct = ConsumptionTemplate.objects.create( - name="Template 1", - order=0, - sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", - filter_path="*foo/bar*", - assign_title="Doc from {correspondent}", - assign_correspondent=self.c, - assign_document_type=self.dt, - assign_storage_path=self.sp, - assign_owner=self.user2, - ) - - test_file = self.SAMPLE_DIR / "simple.pdf" - - with mock.patch("documents.tasks.async_to_sync"): - with self.assertLogs("paperless.matching", level="DEBUG") as cm: - tasks.consume_file( - ConsumableDocument( - source=DocumentSource.ConsumeFolder, - original_file=test_file, - ), - None, - ) - m.assert_called_once() - _, overrides = m.call_args - self.assertIsNone(overrides["override_correspondent_id"]) - self.assertIsNone(overrides["override_document_type_id"]) - self.assertIsNone(overrides["override_tag_ids"]) - self.assertIsNone(overrides["override_storage_path_id"]) - self.assertIsNone(overrides["override_owner_id"]) - self.assertIsNone(overrides["override_view_users"]) - self.assertIsNone(overrides["override_view_groups"]) - self.assertIsNone(overrides["override_change_users"]) - self.assertIsNone(overrides["override_change_groups"]) - self.assertIsNone(overrides["override_title"]) - - expected_str = f"Document did not match template {ct}" - self.assertIn(expected_str, cm.output[0]) - expected_str = f"Document path {test_file} does not match" - self.assertIn(expected_str, cm.output[1]) - - @mock.patch("documents.consumer.Consumer.try_consume_file") - def test_consumption_template_no_match_mail_rule(self, m): - """ - GIVEN: - - Existing consumption template - WHEN: - - File that does not match on source is consumed - THEN: - - Template overrides are not applied - """ - ct = ConsumptionTemplate.objects.create( - name="Template 1", - order=0, - sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", - filter_mailrule=self.rule1, - assign_title="Doc from {correspondent}", - assign_correspondent=self.c, - assign_document_type=self.dt, - assign_storage_path=self.sp, - assign_owner=self.user2, - ) - - test_file = self.SAMPLE_DIR / "simple.pdf" - - with mock.patch("documents.tasks.async_to_sync"): - with self.assertLogs("paperless.matching", level="DEBUG") as cm: - tasks.consume_file( - ConsumableDocument( - source=DocumentSource.ConsumeFolder, - original_file=test_file, - mailrule_id=99, - ), - None, - ) - m.assert_called_once() - _, overrides = m.call_args - self.assertIsNone(overrides["override_correspondent_id"]) - self.assertIsNone(overrides["override_document_type_id"]) - self.assertIsNone(overrides["override_tag_ids"]) - self.assertIsNone(overrides["override_storage_path_id"]) - self.assertIsNone(overrides["override_owner_id"]) - self.assertIsNone(overrides["override_view_users"]) - self.assertIsNone(overrides["override_view_groups"]) - self.assertIsNone(overrides["override_change_users"]) - self.assertIsNone(overrides["override_change_groups"]) - self.assertIsNone(overrides["override_title"]) - - expected_str = f"Document did not match template {ct}" - self.assertIn(expected_str, cm.output[0]) - expected_str = "Document mail rule 99 !=" - self.assertIn(expected_str, cm.output[1]) - - @mock.patch("documents.consumer.Consumer.try_consume_file") - def test_consumption_template_no_match_source(self, m): - """ - GIVEN: - - Existing consumption template - WHEN: - - File that does not match on source is consumed - THEN: - - Template overrides are not applied - """ - ct = ConsumptionTemplate.objects.create( - name="Template 1", - order=0, - sources=f"{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", - filter_path="*", - assign_title="Doc from {correspondent}", - assign_correspondent=self.c, - assign_document_type=self.dt, - assign_storage_path=self.sp, - assign_owner=self.user2, - ) - - test_file = self.SAMPLE_DIR / "simple.pdf" - - with mock.patch("documents.tasks.async_to_sync"): - with self.assertLogs("paperless.matching", level="DEBUG") as cm: - tasks.consume_file( - ConsumableDocument( - source=DocumentSource.ApiUpload, - original_file=test_file, - ), - None, - ) - m.assert_called_once() - _, overrides = m.call_args - self.assertIsNone(overrides["override_correspondent_id"]) - self.assertIsNone(overrides["override_document_type_id"]) - self.assertIsNone(overrides["override_tag_ids"]) - self.assertIsNone(overrides["override_storage_path_id"]) - self.assertIsNone(overrides["override_owner_id"]) - self.assertIsNone(overrides["override_view_users"]) - self.assertIsNone(overrides["override_view_groups"]) - self.assertIsNone(overrides["override_change_users"]) - self.assertIsNone(overrides["override_change_groups"]) - self.assertIsNone(overrides["override_title"]) - - expected_str = f"Document did not match template {ct}" - self.assertIn(expected_str, cm.output[0]) - expected_str = f"Document source {DocumentSource.ApiUpload.name} not in ['{DocumentSource.ConsumeFolder.name}', '{DocumentSource.MailFetch.name}']" - self.assertIn(expected_str, cm.output[1]) - - @mock.patch("documents.consumer.Consumer.try_consume_file") - def test_consumption_template_repeat_custom_fields(self, m): - """ - GIVEN: - - Existing consumption templates which assign the same custom field - WHEN: - - File that matches is consumed - THEN: - - Custom field is added the first time successfully - """ - ct = ConsumptionTemplate.objects.create( - name="Template 1", - order=0, - sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", - filter_filename="*simple*", - ) - ct.assign_custom_fields.add(self.cf1.pk) - ct.save() - - ct2 = ConsumptionTemplate.objects.create( - name="Template 2", - order=1, - sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", - filter_filename="*simple*", - ) - ct2.assign_custom_fields.add(self.cf1.pk) - ct2.save() - - test_file = self.SAMPLE_DIR / "simple.pdf" - - with mock.patch("documents.tasks.async_to_sync"): - with self.assertLogs("paperless.matching", level="INFO") as cm: - tasks.consume_file( - ConsumableDocument( - source=DocumentSource.ConsumeFolder, - original_file=test_file, - ), - None, - ) - m.assert_called_once() - _, overrides = m.call_args - self.assertEqual( - overrides["override_custom_field_ids"], - [self.cf1.pk], - ) - - expected_str = f"Document matched template {ct}" - self.assertIn(expected_str, cm.output[0]) - expected_str = f"Document matched template {ct2}" - self.assertIn(expected_str, cm.output[1]) diff --git a/src/documents/tests/test_management_exporter.py b/src/documents/tests/test_management_exporter.py index 898dfbc53..a51bd4662 100644 --- a/src/documents/tests/test_management_exporter.py +++ b/src/documents/tests/test_management_exporter.py @@ -21,7 +21,6 @@ from guardian.models import UserObjectPermission from guardian.shortcuts import assign_perm from documents.management.commands import document_exporter -from documents.models import ConsumptionTemplate from documents.models import Correspondent from documents.models import CustomField from documents.models import CustomFieldInstance @@ -31,6 +30,9 @@ from documents.models import Note from documents.models import StoragePath from documents.models import Tag from documents.models import User +from documents.models import Workflow +from documents.models import WorkflowAction +from documents.models import WorkflowTrigger from documents.sanity_checker import check_sanity from documents.settings import EXPORTER_FILE_NAME from documents.tests.utils import DirectoriesMixin @@ -109,7 +111,16 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.d4.storage_path = self.sp1 self.d4.save() - self.ct1 = ConsumptionTemplate.objects.create(name="CT 1", filter_path="*") + self.trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=[1], + filter_filename="*", + ) + self.action = WorkflowAction.objects.create(assign_title="new title") + self.workflow = Workflow.objects.create(name="Workflow 1", order="0") + self.workflow.triggers.add(self.trigger) + self.workflow.actions.add(self.action) + self.workflow.save() super().setUp() @@ -168,7 +179,7 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): manifest = self._do_export(use_filename_format=use_filename_format) - self.assertEqual(len(manifest), 178) + self.assertEqual(len(manifest), 190) # dont include consumer or AnonymousUser users self.assertEqual( @@ -262,7 +273,7 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.assertEqual(Document.objects.get(id=self.d4.id).title, "wow_dec") self.assertEqual(GroupObjectPermission.objects.count(), 1) self.assertEqual(UserObjectPermission.objects.count(), 1) - self.assertEqual(Permission.objects.count(), 128) + self.assertEqual(Permission.objects.count(), 136) messages = check_sanity() # everything is alright after the test self.assertEqual(len(messages), 0) @@ -694,15 +705,15 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): os.path.join(self.dirs.media_dir, "documents"), ) - self.assertEqual(ContentType.objects.count(), 32) - self.assertEqual(Permission.objects.count(), 128) + self.assertEqual(ContentType.objects.count(), 34) + self.assertEqual(Permission.objects.count(), 136) manifest = self._do_export() with paperless_environment(): self.assertEqual( len(list(filter(lambda e: e["model"] == "auth.permission", manifest))), - 128, + 136, ) # add 1 more to db to show objects are not re-created by import Permission.objects.create( @@ -710,7 +721,7 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): codename="test_perm", content_type_id=1, ) - self.assertEqual(Permission.objects.count(), 129) + self.assertEqual(Permission.objects.count(), 137) # will cause an import error self.user.delete() @@ -719,5 +730,5 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): with self.assertRaises(IntegrityError): call_command("document_importer", "--no-progress-bar", self.target) - self.assertEqual(ContentType.objects.count(), 32) - self.assertEqual(Permission.objects.count(), 129) + self.assertEqual(ContentType.objects.count(), 34) + self.assertEqual(Permission.objects.count(), 137) diff --git a/src/documents/tests/test_migration_consumption_templates.py b/src/documents/tests/test_migration_consumption_templates.py index 3374530a2..917007116 100644 --- a/src/documents/tests/test_migration_consumption_templates.py +++ b/src/documents/tests/test_migration_consumption_templates.py @@ -33,11 +33,18 @@ class TestReverseMigrateConsumptionTemplate(TestMigrations): self.Permission = apps.get_model("auth", "Permission") self.user = User.objects.create(username="user1") self.group = Group.objects.create(name="group1") - permission = self.Permission.objects.get(codename="add_consumptiontemplate") - self.user.user_permissions.add(permission.id) - self.group.permissions.add(permission.id) + permission = self.Permission.objects.filter( + codename="add_consumptiontemplate", + ).first() + if permission is not None: + self.user.user_permissions.add(permission.id) + self.group.permissions.add(permission.id) def test_remove_consumptiontemplate_permissions(self): - permission = self.Permission.objects.get(codename="add_consumptiontemplate") - self.assertFalse(self.user.has_perm(f"documents.{permission.codename}")) - self.assertFalse(permission in self.group.permissions.all()) + permission = self.Permission.objects.filter( + codename="add_consumptiontemplate", + ).first() + # can be None ? now that CTs removed + if permission is not None: + self.assertFalse(self.user.has_perm(f"documents.{permission.codename}")) + self.assertFalse(permission in self.group.permissions.all()) diff --git a/src/documents/tests/test_migration_workflows.py b/src/documents/tests/test_migration_workflows.py new file mode 100644 index 000000000..742757783 --- /dev/null +++ b/src/documents/tests/test_migration_workflows.py @@ -0,0 +1,131 @@ +from documents.data_models import DocumentSource +from documents.tests.utils import TestMigrations + + +class TestMigrateWorkflow(TestMigrations): + migrate_from = "1043_alter_savedviewfilterrule_rule_type" + migrate_to = "1044_workflow_workflowaction_workflowtrigger_and_more" + dependencies = ( + ("paperless_mail", "0023_remove_mailrule_filter_attachment_filename_and_more"), + ) + + def setUpBeforeMigration(self, apps): + User = apps.get_model("auth", "User") + Group = apps.get_model("auth", "Group") + self.Permission = apps.get_model("auth", "Permission") + self.user = User.objects.create(username="user1") + self.group = Group.objects.create(name="group1") + permission = self.Permission.objects.get(codename="add_document") + self.user.user_permissions.add(permission.id) + self.group.permissions.add(permission.id) + + # create a CT to migrate + c = apps.get_model("documents", "Correspondent").objects.create( + name="Correspondent Name", + ) + dt = apps.get_model("documents", "DocumentType").objects.create( + name="DocType Name", + ) + t1 = apps.get_model("documents", "Tag").objects.create(name="t1") + sp = apps.get_model("documents", "StoragePath").objects.create(path="/test/") + cf1 = apps.get_model("documents", "CustomField").objects.create( + name="Custom Field 1", + data_type="string", + ) + ma = apps.get_model("paperless_mail", "MailAccount").objects.create( + name="MailAccount 1", + ) + mr = apps.get_model("paperless_mail", "MailRule").objects.create( + name="MailRule 1", + order=0, + account=ma, + ) + + user2 = User.objects.create(username="user2") + user3 = User.objects.create(username="user3") + group2 = Group.objects.create(name="group2") + + ConsumptionTemplate = apps.get_model("documents", "ConsumptionTemplate") + + ct = ConsumptionTemplate.objects.create( + name="Template 1", + order=0, + sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", + filter_filename="*simple*", + filter_path="*/samples/*", + filter_mailrule=mr, + assign_title="Doc from {correspondent}", + assign_correspondent=c, + assign_document_type=dt, + assign_storage_path=sp, + assign_owner=user2, + ) + + ct.assign_tags.add(t1) + ct.assign_view_users.add(user3) + ct.assign_view_groups.add(group2) + ct.assign_change_users.add(user3) + ct.assign_change_groups.add(group2) + ct.assign_custom_fields.add(cf1) + ct.save() + + def test_users_with_add_documents_get_add_and_workflow_templates_get_migrated(self): + permission = self.Permission.objects.get(codename="add_workflow") + self.assertTrue(permission in self.user.user_permissions.all()) + self.assertTrue(permission in self.group.permissions.all()) + + Workflow = self.apps.get_model("documents", "Workflow") + self.assertEqual(Workflow.objects.all().count(), 1) + + +class TestReverseMigrateWorkflow(TestMigrations): + migrate_from = "1044_workflow_workflowaction_workflowtrigger_and_more" + migrate_to = "1043_alter_savedviewfilterrule_rule_type" + + def setUpBeforeMigration(self, apps): + User = apps.get_model("auth", "User") + Group = apps.get_model("auth", "Group") + self.Permission = apps.get_model("auth", "Permission") + self.user = User.objects.create(username="user1") + self.group = Group.objects.create(name="group1") + permission = self.Permission.objects.filter( + codename="add_workflow", + ).first() + if permission is not None: + self.user.user_permissions.add(permission.id) + self.group.permissions.add(permission.id) + + Workflow = apps.get_model("documents", "Workflow") + WorkflowTrigger = apps.get_model("documents", "WorkflowTrigger") + WorkflowAction = apps.get_model("documents", "WorkflowAction") + + trigger = WorkflowTrigger.objects.create( + type=0, + sources=[DocumentSource.ConsumeFolder], + filter_path="*/path/*", + filter_filename="*file*", + ) + + action = WorkflowAction.objects.create( + assign_title="assign title", + ) + workflow = Workflow.objects.create( + name="workflow 1", + order=0, + ) + workflow.triggers.set([trigger]) + workflow.actions.set([action]) + workflow.save() + + def test_remove_workflow_permissions_and_migrate_workflows_to_consumption_templates( + self, + ): + permission = self.Permission.objects.filter( + codename="add_workflow", + ).first() + if permission is not None: + self.assertFalse(permission in self.user.user_permissions.all()) + self.assertFalse(permission in self.group.permissions.all()) + + ConsumptionTemplate = self.apps.get_model("documents", "ConsumptionTemplate") + self.assertEqual(ConsumptionTemplate.objects.all().count(), 1) diff --git a/src/documents/tests/test_workflows.py b/src/documents/tests/test_workflows.py new file mode 100644 index 000000000..2e516e24c --- /dev/null +++ b/src/documents/tests/test_workflows.py @@ -0,0 +1,1017 @@ +from datetime import timedelta +from pathlib import Path +from unittest import mock + +from django.contrib.auth.models import Group +from django.contrib.auth.models import User +from django.utils import timezone +from rest_framework.test import APITestCase + +from documents import tasks +from documents.data_models import ConsumableDocument +from documents.data_models import DocumentSource +from documents.matching import document_matches_workflow +from documents.models import Correspondent +from documents.models import CustomField +from documents.models import Document +from documents.models import DocumentType +from documents.models import MatchingModel +from documents.models import StoragePath +from documents.models import Tag +from documents.models import Workflow +from documents.models import WorkflowAction +from documents.models import WorkflowTrigger +from documents.signals import document_consumption_finished +from documents.tests.utils import DirectoriesMixin +from documents.tests.utils import FileSystemAssertsMixin +from paperless_mail.models import MailAccount +from paperless_mail.models import MailRule + + +class TestWorkflows(DirectoriesMixin, FileSystemAssertsMixin, APITestCase): + SAMPLE_DIR = Path(__file__).parent / "samples" + + def setUp(self) -> None: + self.c = Correspondent.objects.create(name="Correspondent Name") + self.c2 = Correspondent.objects.create(name="Correspondent Name 2") + self.dt = DocumentType.objects.create(name="DocType Name") + self.t1 = Tag.objects.create(name="t1") + self.t2 = Tag.objects.create(name="t2") + self.t3 = Tag.objects.create(name="t3") + self.sp = StoragePath.objects.create(path="/test/") + self.cf1 = CustomField.objects.create(name="Custom Field 1", data_type="string") + self.cf2 = CustomField.objects.create( + name="Custom Field 2", + data_type="integer", + ) + + self.user2 = User.objects.create(username="user2") + self.user3 = User.objects.create(username="user3") + self.group1 = Group.objects.create(name="group1") + + account1 = MailAccount.objects.create( + name="Email1", + username="username1", + password="password1", + imap_server="server.example.com", + imap_port=443, + imap_security=MailAccount.ImapSecurity.SSL, + character_set="UTF-8", + ) + self.rule1 = MailRule.objects.create( + name="Rule1", + account=account1, + folder="INBOX", + filter_from="from@example.com", + filter_to="someone@somewhere.com", + filter_subject="subject", + filter_body="body", + filter_attachment_filename_include="file.pdf", + maximum_age=30, + action=MailRule.MailAction.MARK_READ, + assign_title_from=MailRule.TitleSource.NONE, + assign_correspondent_from=MailRule.CorrespondentSource.FROM_NOTHING, + order=0, + attachment_type=MailRule.AttachmentProcessing.ATTACHMENTS_ONLY, + assign_owner_from_rule=False, + ) + + return super().setUp() + + @mock.patch("documents.consumer.Consumer.try_consume_file") + def test_workflow_match(self, m): + """ + GIVEN: + - Existing workflow + WHEN: + - File that matches is consumed + THEN: + - Template overrides are applied + """ + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", + filter_filename="*simple*", + filter_path="*/samples/*", + ) + action = WorkflowAction.objects.create( + assign_title="Doc from {correspondent}", + assign_correspondent=self.c, + assign_document_type=self.dt, + assign_storage_path=self.sp, + assign_owner=self.user2, + ) + action.assign_tags.add(self.t1) + action.assign_tags.add(self.t2) + action.assign_tags.add(self.t3) + action.assign_view_users.add(self.user3.pk) + action.assign_view_groups.add(self.group1.pk) + action.assign_change_users.add(self.user3.pk) + action.assign_change_groups.add(self.group1.pk) + action.assign_custom_fields.add(self.cf1.pk) + action.assign_custom_fields.add(self.cf2.pk) + action.save() + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + self.assertEqual(w.__str__(), "Workflow: Workflow 1") + self.assertEqual(trigger.__str__(), "WorkflowTrigger 1") + self.assertEqual(action.__str__(), "WorkflowAction 1") + + test_file = self.SAMPLE_DIR / "simple.pdf" + + with mock.patch("documents.tasks.async_to_sync"): + with self.assertLogs("paperless.matching", level="INFO") as cm: + tasks.consume_file( + ConsumableDocument( + source=DocumentSource.ConsumeFolder, + original_file=test_file, + ), + None, + ) + m.assert_called_once() + _, overrides = m.call_args + self.assertEqual(overrides["override_correspondent_id"], self.c.pk) + self.assertEqual(overrides["override_document_type_id"], self.dt.pk) + self.assertEqual( + overrides["override_tag_ids"], + [self.t1.pk, self.t2.pk, self.t3.pk], + ) + self.assertEqual(overrides["override_storage_path_id"], self.sp.pk) + self.assertEqual(overrides["override_owner_id"], self.user2.pk) + self.assertEqual(overrides["override_view_users"], [self.user3.pk]) + self.assertEqual(overrides["override_view_groups"], [self.group1.pk]) + self.assertEqual(overrides["override_change_users"], [self.user3.pk]) + self.assertEqual(overrides["override_change_groups"], [self.group1.pk]) + self.assertEqual( + overrides["override_title"], + "Doc from {correspondent}", + ) + self.assertEqual( + overrides["override_custom_field_ids"], + [self.cf1.pk, self.cf2.pk], + ) + + info = cm.output[0] + expected_str = f"Document matched {trigger} from {w}" + self.assertIn(expected_str, info) + + @mock.patch("documents.consumer.Consumer.try_consume_file") + def test_workflow_match_mailrule(self, m): + """ + GIVEN: + - Existing workflow + WHEN: + - File that matches is consumed via mail rule + THEN: + - Template overrides are applied + """ + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", + filter_mailrule=self.rule1, + ) + + action = WorkflowAction.objects.create( + assign_title="Doc from {correspondent}", + assign_correspondent=self.c, + assign_document_type=self.dt, + assign_storage_path=self.sp, + assign_owner=self.user2, + ) + action.assign_tags.add(self.t1) + action.assign_tags.add(self.t2) + action.assign_tags.add(self.t3) + action.assign_view_users.add(self.user3.pk) + action.assign_view_groups.add(self.group1.pk) + action.assign_change_users.add(self.user3.pk) + action.assign_change_groups.add(self.group1.pk) + action.save() + + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + test_file = self.SAMPLE_DIR / "simple.pdf" + with mock.patch("documents.tasks.async_to_sync"): + with self.assertLogs("paperless.matching", level="INFO") as cm: + tasks.consume_file( + ConsumableDocument( + source=DocumentSource.ConsumeFolder, + original_file=test_file, + mailrule_id=self.rule1.pk, + ), + None, + ) + m.assert_called_once() + _, overrides = m.call_args + self.assertEqual(overrides["override_correspondent_id"], self.c.pk) + self.assertEqual(overrides["override_document_type_id"], self.dt.pk) + self.assertEqual( + overrides["override_tag_ids"], + [self.t1.pk, self.t2.pk, self.t3.pk], + ) + self.assertEqual(overrides["override_storage_path_id"], self.sp.pk) + self.assertEqual(overrides["override_owner_id"], self.user2.pk) + self.assertEqual(overrides["override_view_users"], [self.user3.pk]) + self.assertEqual(overrides["override_view_groups"], [self.group1.pk]) + self.assertEqual(overrides["override_change_users"], [self.user3.pk]) + self.assertEqual(overrides["override_change_groups"], [self.group1.pk]) + self.assertEqual( + overrides["override_title"], + "Doc from {correspondent}", + ) + + info = cm.output[0] + expected_str = f"Document matched {trigger} from {w}" + self.assertIn(expected_str, info) + + @mock.patch("documents.consumer.Consumer.try_consume_file") + def test_workflow_match_multiple(self, m): + """ + GIVEN: + - Multiple existing workflow + WHEN: + - File that matches is consumed + THEN: + - Template overrides are applied with subsequent templates overwriting previous values + or merging if multiple + """ + trigger1 = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", + filter_path="*/samples/*", + ) + action1 = WorkflowAction.objects.create( + assign_title="Doc from {correspondent}", + assign_correspondent=self.c, + assign_document_type=self.dt, + ) + action1.assign_tags.add(self.t1) + action1.assign_tags.add(self.t2) + action1.assign_view_users.add(self.user2) + action1.save() + + w1 = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w1.triggers.add(trigger1) + w1.actions.add(action1) + w1.save() + + trigger2 = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", + filter_filename="*simple*", + ) + action2 = WorkflowAction.objects.create( + assign_title="Doc from {correspondent}", + assign_correspondent=self.c2, + assign_storage_path=self.sp, + ) + action2.assign_tags.add(self.t3) + action2.assign_view_users.add(self.user3) + action2.save() + + w2 = Workflow.objects.create( + name="Workflow 2", + order=0, + ) + w2.triggers.add(trigger2) + w2.actions.add(action2) + w2.save() + + test_file = self.SAMPLE_DIR / "simple.pdf" + + with mock.patch("documents.tasks.async_to_sync"): + with self.assertLogs("paperless.matching", level="INFO") as cm: + tasks.consume_file( + ConsumableDocument( + source=DocumentSource.ConsumeFolder, + original_file=test_file, + ), + None, + ) + m.assert_called_once() + _, overrides = m.call_args + # template 1 + self.assertEqual(overrides["override_document_type_id"], self.dt.pk) + # template 2 + self.assertEqual(overrides["override_correspondent_id"], self.c2.pk) + self.assertEqual(overrides["override_storage_path_id"], self.sp.pk) + # template 1 & 2 + self.assertEqual( + overrides["override_tag_ids"], + [self.t1.pk, self.t2.pk, self.t3.pk], + ) + self.assertEqual( + overrides["override_view_users"], + [self.user2.pk, self.user3.pk], + ) + + expected_str = f"Document matched {trigger1} from {w1}" + self.assertIn(expected_str, cm.output[0]) + expected_str = f"Document matched {trigger2} from {w2}" + self.assertIn(expected_str, cm.output[1]) + + @mock.patch("documents.consumer.Consumer.try_consume_file") + def test_workflow_no_match_filename(self, m): + """ + GIVEN: + - Existing workflow + WHEN: + - File that does not match on filename is consumed + THEN: + - Template overrides are not applied + """ + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", + filter_filename="*foobar*", + filter_path=None, + ) + action = WorkflowAction.objects.create( + assign_title="Doc from {correspondent}", + assign_correspondent=self.c, + assign_document_type=self.dt, + assign_storage_path=self.sp, + assign_owner=self.user2, + ) + action.save() + + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + test_file = self.SAMPLE_DIR / "simple.pdf" + + with mock.patch("documents.tasks.async_to_sync"): + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + tasks.consume_file( + ConsumableDocument( + source=DocumentSource.ConsumeFolder, + original_file=test_file, + ), + None, + ) + m.assert_called_once() + _, overrides = m.call_args + self.assertIsNone(overrides["override_correspondent_id"]) + self.assertIsNone(overrides["override_document_type_id"]) + self.assertIsNone(overrides["override_tag_ids"]) + self.assertIsNone(overrides["override_storage_path_id"]) + self.assertIsNone(overrides["override_owner_id"]) + self.assertIsNone(overrides["override_view_users"]) + self.assertIsNone(overrides["override_view_groups"]) + self.assertIsNone(overrides["override_change_users"]) + self.assertIsNone(overrides["override_change_groups"]) + self.assertIsNone(overrides["override_title"]) + + expected_str = f"Document did not match {w}" + self.assertIn(expected_str, cm.output[0]) + expected_str = f"Document filename {test_file.name} does not match" + self.assertIn(expected_str, cm.output[1]) + + @mock.patch("documents.consumer.Consumer.try_consume_file") + def test_workflow_no_match_path(self, m): + """ + GIVEN: + - Existing workflow + WHEN: + - File that does not match on path is consumed + THEN: + - Template overrides are not applied + """ + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", + filter_path="*foo/bar*", + ) + action = WorkflowAction.objects.create( + assign_title="Doc from {correspondent}", + assign_correspondent=self.c, + assign_document_type=self.dt, + assign_storage_path=self.sp, + assign_owner=self.user2, + ) + action.save() + + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + test_file = self.SAMPLE_DIR / "simple.pdf" + + with mock.patch("documents.tasks.async_to_sync"): + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + tasks.consume_file( + ConsumableDocument( + source=DocumentSource.ConsumeFolder, + original_file=test_file, + ), + None, + ) + m.assert_called_once() + _, overrides = m.call_args + self.assertIsNone(overrides["override_correspondent_id"]) + self.assertIsNone(overrides["override_document_type_id"]) + self.assertIsNone(overrides["override_tag_ids"]) + self.assertIsNone(overrides["override_storage_path_id"]) + self.assertIsNone(overrides["override_owner_id"]) + self.assertIsNone(overrides["override_view_users"]) + self.assertIsNone(overrides["override_view_groups"]) + self.assertIsNone(overrides["override_change_users"]) + self.assertIsNone(overrides["override_change_groups"]) + self.assertIsNone(overrides["override_title"]) + + expected_str = f"Document did not match {w}" + self.assertIn(expected_str, cm.output[0]) + expected_str = f"Document path {test_file} does not match" + self.assertIn(expected_str, cm.output[1]) + + @mock.patch("documents.consumer.Consumer.try_consume_file") + def test_workflow_no_match_mail_rule(self, m): + """ + GIVEN: + - Existing workflow + WHEN: + - File that does not match on source is consumed + THEN: + - Template overrides are not applied + """ + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", + filter_mailrule=self.rule1, + ) + action = WorkflowAction.objects.create( + assign_title="Doc from {correspondent}", + assign_correspondent=self.c, + assign_document_type=self.dt, + assign_storage_path=self.sp, + assign_owner=self.user2, + ) + action.save() + + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + test_file = self.SAMPLE_DIR / "simple.pdf" + + with mock.patch("documents.tasks.async_to_sync"): + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + tasks.consume_file( + ConsumableDocument( + source=DocumentSource.ConsumeFolder, + original_file=test_file, + mailrule_id=99, + ), + None, + ) + m.assert_called_once() + _, overrides = m.call_args + self.assertIsNone(overrides["override_correspondent_id"]) + self.assertIsNone(overrides["override_document_type_id"]) + self.assertIsNone(overrides["override_tag_ids"]) + self.assertIsNone(overrides["override_storage_path_id"]) + self.assertIsNone(overrides["override_owner_id"]) + self.assertIsNone(overrides["override_view_users"]) + self.assertIsNone(overrides["override_view_groups"]) + self.assertIsNone(overrides["override_change_users"]) + self.assertIsNone(overrides["override_change_groups"]) + self.assertIsNone(overrides["override_title"]) + + expected_str = f"Document did not match {w}" + self.assertIn(expected_str, cm.output[0]) + expected_str = "Document mail rule 99 !=" + self.assertIn(expected_str, cm.output[1]) + + @mock.patch("documents.consumer.Consumer.try_consume_file") + def test_workflow_no_match_source(self, m): + """ + GIVEN: + - Existing workflow + WHEN: + - File that does not match on source is consumed + THEN: + - Template overrides are not applied + """ + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=f"{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", + filter_path="*", + ) + action = WorkflowAction.objects.create( + assign_title="Doc from {correspondent}", + assign_correspondent=self.c, + assign_document_type=self.dt, + assign_storage_path=self.sp, + assign_owner=self.user2, + ) + action.save() + + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + test_file = self.SAMPLE_DIR / "simple.pdf" + + with mock.patch("documents.tasks.async_to_sync"): + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + tasks.consume_file( + ConsumableDocument( + source=DocumentSource.ApiUpload, + original_file=test_file, + ), + None, + ) + m.assert_called_once() + _, overrides = m.call_args + self.assertIsNone(overrides["override_correspondent_id"]) + self.assertIsNone(overrides["override_document_type_id"]) + self.assertIsNone(overrides["override_tag_ids"]) + self.assertIsNone(overrides["override_storage_path_id"]) + self.assertIsNone(overrides["override_owner_id"]) + self.assertIsNone(overrides["override_view_users"]) + self.assertIsNone(overrides["override_view_groups"]) + self.assertIsNone(overrides["override_change_users"]) + self.assertIsNone(overrides["override_change_groups"]) + self.assertIsNone(overrides["override_title"]) + + expected_str = f"Document did not match {w}" + self.assertIn(expected_str, cm.output[0]) + expected_str = f"Document source {DocumentSource.ApiUpload.name} not in ['{DocumentSource.ConsumeFolder.name}', '{DocumentSource.MailFetch.name}']" + self.assertIn(expected_str, cm.output[1]) + + def test_document_added_no_match_trigger_type(self): + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + ) + action = WorkflowAction.objects.create( + assign_title="Doc assign owner", + assign_owner=self.user2, + ) + action.save() + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + doc = Document.objects.create( + title="sample test", + correspondent=self.c, + original_filename="sample.pdf", + ) + doc.save() + + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + document_matches_workflow( + doc, + w, + WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + ) + expected_str = f"Document did not match {w}" + self.assertIn(expected_str, cm.output[0]) + expected_str = f"No matching triggers with type {WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED} found" + self.assertIn(expected_str, cm.output[1]) + + @mock.patch("documents.consumer.Consumer.try_consume_file") + def test_workflow_repeat_custom_fields(self, m): + """ + GIVEN: + - Existing workflows which assign the same custom field + WHEN: + - File that matches is consumed + THEN: + - Custom field is added the first time successfully + """ + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", + filter_filename="*simple*", + ) + action1 = WorkflowAction.objects.create() + action1.assign_custom_fields.add(self.cf1.pk) + action1.save() + + action2 = WorkflowAction.objects.create() + action2.assign_custom_fields.add(self.cf1.pk) + action2.save() + + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action1, action2) + w.save() + + test_file = self.SAMPLE_DIR / "simple.pdf" + + with mock.patch("documents.tasks.async_to_sync"): + with self.assertLogs("paperless.matching", level="INFO") as cm: + tasks.consume_file( + ConsumableDocument( + source=DocumentSource.ConsumeFolder, + original_file=test_file, + ), + None, + ) + m.assert_called_once() + _, overrides = m.call_args + self.assertEqual( + overrides["override_custom_field_ids"], + [self.cf1.pk], + ) + + expected_str = f"Document matched {trigger} from {w}" + self.assertIn(expected_str, cm.output[0]) + + def test_document_added_workflow(self): + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + filter_filename="*sample*", + ) + action = WorkflowAction.objects.create( + assign_title="Doc created in {created_year}", + assign_correspondent=self.c2, + assign_document_type=self.dt, + assign_storage_path=self.sp, + assign_owner=self.user2, + ) + action.assign_tags.add(self.t1) + action.assign_tags.add(self.t2) + action.assign_tags.add(self.t3) + action.assign_view_users.add(self.user3.pk) + action.assign_view_groups.add(self.group1.pk) + action.assign_change_users.add(self.user3.pk) + action.assign_change_groups.add(self.group1.pk) + action.assign_custom_fields.add(self.cf1.pk) + action.assign_custom_fields.add(self.cf2.pk) + action.save() + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + now = timezone.localtime(timezone.now()) + created = now - timedelta(weeks=520) + doc = Document.objects.create( + title="sample test", + correspondent=self.c, + original_filename="sample.pdf", + added=now, + created=created, + ) + + document_consumption_finished.send( + sender=self.__class__, + document=doc, + ) + + self.assertEqual(doc.correspondent, self.c2) + self.assertEqual(doc.title, f"Doc created in {created.year}") + + def test_document_added_no_match_filename(self): + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + filter_filename="*foobar*", + ) + action = WorkflowAction.objects.create( + assign_title="Doc assign owner", + assign_owner=self.user2, + ) + action.save() + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + doc = Document.objects.create( + title="sample test", + correspondent=self.c, + original_filename="sample.pdf", + ) + doc.tags.set([self.t3]) + doc.save() + + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + document_consumption_finished.send( + sender=self.__class__, + document=doc, + ) + expected_str = f"Document did not match {w}" + self.assertIn(expected_str, cm.output[0]) + expected_str = f"Document filename {doc.original_filename} does not match" + self.assertIn(expected_str, cm.output[1]) + + def test_document_added_match_content_matching(self): + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + matching_algorithm=MatchingModel.MATCH_LITERAL, + match="foo", + is_insensitive=True, + ) + action = WorkflowAction.objects.create( + assign_title="Doc content matching worked", + assign_owner=self.user2, + ) + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + doc = Document.objects.create( + title="sample test", + correspondent=self.c, + original_filename="sample.pdf", + content="Hello world foo bar", + ) + + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + document_consumption_finished.send( + sender=self.__class__, + document=doc, + ) + expected_str = f"WorkflowTrigger {trigger} matched on document" + expected_str2 = 'because it contains this string: "foo"' + self.assertIn(expected_str, cm.output[0]) + self.assertIn(expected_str2, cm.output[0]) + expected_str = f"Document matched {trigger} from {w}" + self.assertIn(expected_str, cm.output[1]) + + def test_document_added_no_match_content_matching(self): + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + matching_algorithm=MatchingModel.MATCH_LITERAL, + match="foo", + is_insensitive=True, + ) + action = WorkflowAction.objects.create( + assign_title="Doc content matching worked", + assign_owner=self.user2, + ) + action.save() + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + doc = Document.objects.create( + title="sample test", + correspondent=self.c, + original_filename="sample.pdf", + content="Hello world bar", + ) + + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + document_consumption_finished.send( + sender=self.__class__, + document=doc, + ) + expected_str = f"Document did not match {w}" + self.assertIn(expected_str, cm.output[0]) + expected_str = f"Document content matching settings for algorithm '{trigger.matching_algorithm}' did not match" + self.assertIn(expected_str, cm.output[1]) + + def test_document_added_no_match_tags(self): + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + ) + trigger.filter_has_tags.set([self.t1, self.t2]) + action = WorkflowAction.objects.create( + assign_title="Doc assign owner", + assign_owner=self.user2, + ) + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + doc = Document.objects.create( + title="sample test", + correspondent=self.c, + original_filename="sample.pdf", + ) + doc.tags.set([self.t3]) + doc.save() + + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + document_consumption_finished.send( + sender=self.__class__, + document=doc, + ) + expected_str = f"Document did not match {w}" + self.assertIn(expected_str, cm.output[0]) + expected_str = f"Document tags {doc.tags.all()} do not include {trigger.filter_has_tags.all()}" + self.assertIn(expected_str, cm.output[1]) + + def test_document_added_no_match_doctype(self): + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + filter_has_document_type=self.dt, + ) + action = WorkflowAction.objects.create( + assign_title="Doc assign owner", + assign_owner=self.user2, + ) + action.save() + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + doc = Document.objects.create( + title="sample test", + original_filename="sample.pdf", + ) + + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + document_consumption_finished.send( + sender=self.__class__, + document=doc, + ) + expected_str = f"Document did not match {w}" + self.assertIn(expected_str, cm.output[0]) + expected_str = f"Document doc type {doc.document_type} does not match {trigger.filter_has_document_type}" + self.assertIn(expected_str, cm.output[1]) + + def test_document_added_no_match_correspondent(self): + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + filter_has_correspondent=self.c, + ) + action = WorkflowAction.objects.create( + assign_title="Doc assign owner", + assign_owner=self.user2, + ) + action.save() + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + doc = Document.objects.create( + title="sample test", + correspondent=self.c2, + original_filename="sample.pdf", + ) + + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + document_consumption_finished.send( + sender=self.__class__, + document=doc, + ) + expected_str = f"Document did not match {w}" + self.assertIn(expected_str, cm.output[0]) + expected_str = f"Document correspondent {doc.correspondent} does not match {trigger.filter_has_correspondent}" + self.assertIn(expected_str, cm.output[1]) + + def test_document_updated_workflow(self): + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED, + filter_has_document_type=self.dt, + ) + action = WorkflowAction.objects.create() + action.assign_custom_fields.add(self.cf1) + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + doc = Document.objects.create( + title="sample test", + correspondent=self.c, + original_filename="sample.pdf", + ) + + superuser = User.objects.create_superuser("superuser") + self.client.force_authenticate(user=superuser) + + self.client.patch( + f"/api/documents/{doc.id}/", + {"document_type": self.dt.id}, + format="json", + ) + + self.assertEqual(doc.custom_fields.all().count(), 1) + + def test_workflow_enabled_disabled(self): + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_ADDED, + filter_filename="*sample*", + ) + action = WorkflowAction.objects.create( + assign_title="Title assign correspondent", + assign_correspondent=self.c2, + ) + w = Workflow.objects.create( + name="Workflow 1", + order=0, + enabled=False, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + action2 = WorkflowAction.objects.create( + assign_title="Title assign owner", + assign_owner=self.user2, + ) + w2 = Workflow.objects.create( + name="Workflow 2", + order=0, + enabled=True, + ) + w2.triggers.add(trigger) + w2.actions.add(action2) + w2.save() + + doc = Document.objects.create( + title="sample test", + correspondent=self.c, + original_filename="sample.pdf", + ) + + document_consumption_finished.send( + sender=self.__class__, + document=doc, + ) + + self.assertEqual(doc.correspondent, self.c) + self.assertEqual(doc.title, "Title assign owner") + self.assertEqual(doc.owner, self.user2) + + def test_new_trigger_type_raises_exception(self): + trigger = WorkflowTrigger.objects.create( + type=4, + ) + action = WorkflowAction.objects.create( + assign_title="Doc assign owner", + ) + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + doc = Document.objects.create( + title="test", + ) + self.assertRaises(Exception, document_matches_workflow, doc, w, 4) diff --git a/src/documents/tests/utils.py b/src/documents/tests/utils.py index fe7dbb059..0b6d8fcad 100644 --- a/src/documents/tests/utils.py +++ b/src/documents/tests/utils.py @@ -265,6 +265,7 @@ class TestMigrations(TransactionTestCase): return apps.get_containing_app_config(type(self).__module__).name migrate_from = None + dependencies = None migrate_to = None auto_migrate = True @@ -277,6 +278,8 @@ class TestMigrations(TransactionTestCase): type(self).__name__, ) self.migrate_from = [(self.app, self.migrate_from)] + if self.dependencies is not None: + self.migrate_from.extend(self.dependencies) self.migrate_to = [(self.app, self.migrate_to)] executor = MigrationExecutor(connection) old_apps = executor.loader.project_state(self.migrate_from).apps diff --git a/src/documents/views.py b/src/documents/views.py index e8c6db0de..84633cc03 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -76,7 +76,6 @@ from documents.matching import match_correspondents from documents.matching import match_document_types from documents.matching import match_storage_paths from documents.matching import match_tags -from documents.models import ConsumptionTemplate from documents.models import Correspondent from documents.models import CustomField from documents.models import Document @@ -87,6 +86,9 @@ from documents.models import SavedView from documents.models import ShareLink from documents.models import StoragePath from documents.models import Tag +from documents.models import Workflow +from documents.models import WorkflowAction +from documents.models import WorkflowTrigger from documents.parsers import get_parser_class_for_mime_type from documents.parsers import parse_date_generator from documents.permissions import PaperlessAdminPermissions @@ -98,7 +100,6 @@ from documents.serialisers import AcknowledgeTasksViewSerializer from documents.serialisers import BulkDownloadSerializer from documents.serialisers import BulkEditObjectPermissionsSerializer from documents.serialisers import BulkEditSerializer -from documents.serialisers import ConsumptionTemplateSerializer from documents.serialisers import CorrespondentSerializer from documents.serialisers import CustomFieldSerializer from documents.serialisers import DocumentListSerializer @@ -112,6 +113,10 @@ from documents.serialisers import TagSerializer from documents.serialisers import TagSerializerVersion1 from documents.serialisers import TasksViewSerializer from documents.serialisers import UiSettingsViewSerializer +from documents.serialisers import WorkflowActionSerializer +from documents.serialisers import WorkflowSerializer +from documents.serialisers import WorkflowTriggerSerializer +from documents.signals import document_updated from documents.tasks import consume_file from paperless import version from paperless.db import GnuPG @@ -320,6 +325,12 @@ class DocumentViewSet( from documents import index index.add_or_update_document(self.get_object()) + + document_updated.send( + sender=self.__class__, + document=self.get_object(), + ) + return response def destroy(self, request, *args, **kwargs): @@ -1373,25 +1384,50 @@ class BulkEditObjectPermissionsView(GenericAPIView, PassUserMixin): ) -class ConsumptionTemplateViewSet(ModelViewSet): +class WorkflowTriggerViewSet(ModelViewSet): permission_classes = (IsAuthenticated, PaperlessObjectPermissions) - serializer_class = ConsumptionTemplateSerializer + serializer_class = WorkflowTriggerSerializer pagination_class = StandardPagination - model = ConsumptionTemplate + model = WorkflowTrigger + + queryset = WorkflowTrigger.objects.all() + + +class WorkflowActionViewSet(ModelViewSet): + permission_classes = (IsAuthenticated, PaperlessObjectPermissions) + + serializer_class = WorkflowActionSerializer + pagination_class = StandardPagination + + model = WorkflowAction + + queryset = WorkflowAction.objects.all().prefetch_related( + "assign_tags", + "assign_view_users", + "assign_view_groups", + "assign_change_users", + "assign_change_groups", + "assign_custom_fields", + ) + + +class WorkflowViewSet(ModelViewSet): + permission_classes = (IsAuthenticated, PaperlessObjectPermissions) + + serializer_class = WorkflowSerializer + pagination_class = StandardPagination + + model = Workflow queryset = ( - ConsumptionTemplate.objects.prefetch_related( - "assign_tags", - "assign_view_users", - "assign_view_groups", - "assign_change_users", - "assign_change_groups", - "assign_custom_fields", - ) - .all() + Workflow.objects.all() .order_by("order") + .prefetch_related( + "triggers", + "actions", + ) ) diff --git a/src/locale/en_US/LC_MESSAGES/django.po b/src/locale/en_US/LC_MESSAGES/django.po index a317ddfd0..3cb19d63c 100644 --- a/src/locale/en_US/LC_MESSAGES/django.po +++ b/src/locale/en_US/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" +"POT-Creation-Date: 2024-01-01 07:54-0800\n" "PO-Revision-Date: 2022-02-17 04:17\n" "Last-Translator: \n" "Language-Team: English\n" @@ -25,27 +25,27 @@ msgstr "" msgid "owner" msgstr "" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "" @@ -53,20 +53,20 @@ msgstr "" msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "" @@ -615,118 +615,174 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" +#: documents/models.py:912 +msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "" "Only consume documents with a path that matches this if specified. Wildcards " "specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "" "Only consume documents which entirely match this filename if specified. " "Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "" "Assign a document title, can include some placeholders, see documentation." msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:865 +#: documents/serialisers.py:988 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1085 msgid "Invalid variable detected." msgstr "" @@ -869,135 +925,286 @@ msgstr "" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "" -#: paperless/settings.py:586 -msgid "English (US)" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:587 -msgid "Arabic" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" +#: paperless/models.py:28 +msgid "pdfa-2" msgstr "" -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:29 +msgid "pdfa-3" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" +#: paperless/models.py:38 +msgid "skip" msgstr "" -#: paperless/settings.py:592 -msgid "Czech" +#: paperless/models.py:39 +msgid "redo" msgstr "" -#: paperless/settings.py:593 -msgid "Danish" +#: paperless/models.py:40 +msgid "force" msgstr "" -#: paperless/settings.py:594 -msgid "German" +#: paperless/models.py:41 +msgid "skip_noarchive" msgstr "" -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:49 +msgid "never" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" +#: paperless/models.py:50 +msgid "with_text" msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" +#: paperless/models.py:51 +msgid "always" msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" +#: paperless/models.py:59 +msgid "clean" msgstr "" -#: paperless/settings.py:599 -msgid "French" +#: paperless/models.py:60 +msgid "clean-final" msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" +msgid "English (US)" msgstr "" #: paperless/settings.py:602 -msgid "Luxembourgish" +msgid "Arabic" msgstr "" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" +msgid "Belarusian" msgstr "" #: paperless/settings.py:605 -msgid "Polish" +msgid "Bulgarian" msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" +msgid "Catalan" msgstr "" #: paperless/settings.py:607 -msgid "Portuguese" +msgid "Czech" msgstr "" #: paperless/settings.py:608 -msgid "Romanian" +msgid "Danish" msgstr "" #: paperless/settings.py:609 -msgid "Russian" +msgid "German" msgstr "" #: paperless/settings.py:610 -msgid "Slovak" +msgid "Greek" msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" +msgid "English (GB)" msgstr "" #: paperless/settings.py:612 -msgid "Serbian" +msgid "Spanish" msgstr "" #: paperless/settings.py:613 -msgid "Swedish" +msgid "Finnish" msgstr "" #: paperless/settings.py:614 -msgid "Turkish" +msgid "French" msgstr "" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "" diff --git a/src/paperless/urls.py b/src/paperless/urls.py index 1c0dafd65..25190e0d8 100644 --- a/src/paperless/urls.py +++ b/src/paperless/urls.py @@ -15,7 +15,6 @@ from documents.views import AcknowledgeTasksView from documents.views import BulkDownloadView from documents.views import BulkEditObjectPermissionsView from documents.views import BulkEditView -from documents.views import ConsumptionTemplateViewSet from documents.views import CorrespondentViewSet from documents.views import CustomFieldViewSet from documents.views import DocumentTypeViewSet @@ -34,6 +33,9 @@ from documents.views import TagViewSet from documents.views import TasksViewSet from documents.views import UiSettingsView from documents.views import UnifiedSearchViewSet +from documents.views import WorkflowActionViewSet +from documents.views import WorkflowTriggerViewSet +from documents.views import WorkflowViewSet from paperless.consumers import StatusConsumer from paperless.views import ApplicationConfigurationViewSet from paperless.views import FaviconView @@ -59,7 +61,9 @@ api_router.register(r"groups", GroupViewSet, basename="groups") api_router.register(r"mail_accounts", MailAccountViewSet) api_router.register(r"mail_rules", MailRuleViewSet) api_router.register(r"share_links", ShareLinkViewSet) -api_router.register(r"consumption_templates", ConsumptionTemplateViewSet) +api_router.register(r"workflow_triggers", WorkflowTriggerViewSet) +api_router.register(r"workflow_actions", WorkflowActionViewSet) +api_router.register(r"workflows", WorkflowViewSet) api_router.register(r"custom_fields", CustomFieldViewSet) api_router.register(r"config", ApplicationConfigurationViewSet) From bbf64b7e93da7cb99183caef942d7da22b353299 Mon Sep 17 00:00:00 2001 From: Bevan Kay Date: Wed, 3 Jan 2024 19:31:56 +1100 Subject: [PATCH 19/33] Enhancement: add `storage_path` parameter to post_document API (#5217) * Feature: add `storage_path` parameter to post_document API * Complete coverage for validate_storage_path --------- Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com> --- docs/api.md | 1 + src/documents/serialisers.py | 14 +++++++ src/documents/tests/test_api_documents.py | 51 ++++++++++++++++++++++- src/documents/views.py | 2 + 4 files changed, 67 insertions(+), 1 deletion(-) diff --git a/docs/api.md b/docs/api.md index 39a06f37f..97ccf4c3a 100644 --- a/docs/api.md +++ b/docs/api.md @@ -274,6 +274,7 @@ The endpoint supports the following optional form fields: - `correspondent`: Specify the ID of a correspondent that the consumer should use for the document. - `document_type`: Similar to correspondent. +- `storage_path`: Similar to correspondent. - `tags`: Similar to correspondent. Specify this multiple times to have multiple tags added to the document. - `archive_serial_number`: An optional archive serial number to set. diff --git a/src/documents/serialisers.py b/src/documents/serialisers.py index b1dd9aee9..41d3139b3 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -966,6 +966,14 @@ class PostDocumentSerializer(serializers.Serializer): required=False, ) + storage_path = serializers.PrimaryKeyRelatedField( + queryset=StoragePath.objects.all(), + label="Storage path", + allow_null=True, + write_only=True, + required=False, + ) + tags = serializers.PrimaryKeyRelatedField( many=True, queryset=Tag.objects.all(), @@ -1005,6 +1013,12 @@ class PostDocumentSerializer(serializers.Serializer): else: return None + def validate_storage_path(self, storage_path): + if storage_path: + return storage_path.id + else: + return None + def validate_tags(self, tags): if tags: return [tag.id for tag in tags] diff --git a/src/documents/tests/test_api_documents.py b/src/documents/tests/test_api_documents.py index 8415b9a71..f19711a96 100644 --- a/src/documents/tests/test_api_documents.py +++ b/src/documents/tests/test_api_documents.py @@ -819,7 +819,13 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): ) as f: response = self.client.post( "/api/documents/post_document/", - {"document": f, "title": "", "correspondent": "", "document_type": ""}, + { + "document": f, + "title": "", + "correspondent": "", + "document_type": "", + "storage_path": "", + }, ) self.assertEqual(response.status_code, status.HTTP_200_OK) @@ -833,6 +839,7 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertIsNone(overrides.title) self.assertIsNone(overrides.correspondent_id) self.assertIsNone(overrides.document_type_id) + self.assertIsNone(overrides.storage_path_id) self.assertIsNone(overrides.tag_ids) def test_upload_invalid_form(self): @@ -975,6 +982,48 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.consume_file_mock.assert_not_called() + def test_upload_with_storage_path(self): + self.consume_file_mock.return_value = celery.result.AsyncResult( + id=str(uuid.uuid4()), + ) + + sp = StoragePath.objects.create(name="invoices") + with open( + os.path.join(os.path.dirname(__file__), "samples", "simple.pdf"), + "rb", + ) as f: + response = self.client.post( + "/api/documents/post_document/", + {"document": f, "storage_path": sp.id}, + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + + self.consume_file_mock.assert_called_once() + + _, overrides = self.get_last_consume_delay_call_args() + + self.assertEqual(overrides.storage_path_id, sp.id) + self.assertIsNone(overrides.correspondent_id) + self.assertIsNone(overrides.title) + self.assertIsNone(overrides.tag_ids) + + def test_upload_with_invalid_storage_path(self): + self.consume_file_mock.return_value = celery.result.AsyncResult( + id=str(uuid.uuid4()), + ) + + with open( + os.path.join(os.path.dirname(__file__), "samples", "simple.pdf"), + "rb", + ) as f: + response = self.client.post( + "/api/documents/post_document/", + {"document": f, "storage_path": 34578}, + ) + self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) + + 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()), diff --git a/src/documents/views.py b/src/documents/views.py index 84633cc03..83f2fc321 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -850,6 +850,7 @@ class PostDocumentView(GenericAPIView): doc_name, doc_data = serializer.validated_data.get("document") correspondent_id = serializer.validated_data.get("correspondent") document_type_id = serializer.validated_data.get("document_type") + storage_path_id = serializer.validated_data.get("storage_path") tag_ids = serializer.validated_data.get("tags") title = serializer.validated_data.get("title") created = serializer.validated_data.get("created") @@ -876,6 +877,7 @@ class PostDocumentView(GenericAPIView): title=title, correspondent_id=correspondent_id, document_type_id=document_type_id, + storage_path_id=storage_path_id, tag_ids=tag_ids, created=created, asn=archive_serial_number, From ba2f51bed1d008a6506665386b3458f4cfe82b5b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Wed, 3 Jan 2024 00:45:22 -0800 Subject: [PATCH 20/33] Fix: consistent workflow action name display --- src-ui/messages.xlf | 50 +++++++++---------- .../workflow-edit-dialog.component.html | 2 +- 2 files changed, 24 insertions(+), 28 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 763576677..7e45a4550 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -444,7 +444,7 @@ src/app/components/document-detail/document-detail.component.html - 294 + 339 @@ -503,7 +503,7 @@ src/app/components/document-detail/document-detail.component.html - 286 + 331 src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html @@ -608,7 +608,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -917,7 +917,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -2965,10 +2965,6 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 28 - - src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 84 - Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. @@ -4615,14 +4611,14 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4633,116 +4629,116 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html index 4663a7f77..81a5eca25 100644 --- a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html +++ b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -81,7 +81,7 @@ @for (action of object?.actions; track action; let i = $index){
    -
    - Consumption templates provide finer control over the document pipeline. + Workflows provide finer control over the document pipeline and trigger actions. -![image](assets/screenshots/consumption_template.png) +![image](assets/screenshots/workflow.png)
    From 5963dfe41b19211a118ebf74b5093c0fa82a19f8 Mon Sep 17 00:00:00 2001 From: ChrisRBe <31167512+ChrisRBe@users.noreply.github.com> Date: Wed, 3 Jan 2024 23:34:59 +0100 Subject: [PATCH 23/33] Fix: correctly format tip admonition (#5229) format for material admonition requires a line break and another level of indentation which was not correctly applied on this line. --- docs/setup.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/setup.md b/docs/setup.md index 346df9275..43b617558 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -28,7 +28,8 @@ steps described in [Docker setup](#docker_hub) automatically. 1. Make sure that Docker and Docker Compose are installed. !!! tip - See the Docker installation instructions at https://docs.docker.com/engine/install/ + + See the Docker installation instructions at https://docs.docker.com/engine/install/ 2. Download and run the installation script: From 8da2535a657fffa484c05c23b79d98f4616660cf Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Thu, 4 Jan 2024 11:58:58 -0800 Subject: [PATCH 24/33] Fix: zip exports not respecting the --delete option (#5245) --- .../management/commands/document_exporter.py | 36 +++++++------ .../tests/test_management_exporter.py | 50 ++++++++++++++++++- 2 files changed, 71 insertions(+), 15 deletions(-) diff --git a/src/documents/management/commands/document_exporter.py b/src/documents/management/commands/document_exporter.py index b08b0b208..9bdbd1c51 100644 --- a/src/documents/management/commands/document_exporter.py +++ b/src/documents/management/commands/document_exporter.py @@ -5,6 +5,7 @@ import shutil import tempfile import time from pathlib import Path +from typing import Optional import tqdm from django.conf import settings @@ -172,14 +173,14 @@ class Command(BaseCommand): self.delete: bool = options["delete"] self.no_archive: bool = options["no_archive"] self.no_thumbnail: bool = options["no_thumbnail"] - zip_export: bool = options["zip"] + self.zip_export: bool = options["zip"] # If zipping, save the original target for later and # get a temporary directory for the target instead temp_dir = None - original_target = None - if zip_export: - original_target = self.target + self.original_target: Optional[Path] = None + if self.zip_export: + self.original_target = self.target os.makedirs(settings.SCRATCH_DIR, exist_ok=True) temp_dir = tempfile.TemporaryDirectory( @@ -203,10 +204,10 @@ class Command(BaseCommand): # We've written everything to the temporary directory in this case, # now make an archive in the original target, with all files stored - if zip_export: + if self.zip_export: shutil.make_archive( os.path.join( - original_target, + self.original_target, options["zip_name"], ), format="zip", @@ -215,7 +216,7 @@ class Command(BaseCommand): finally: # Always cleanup the temporary directory, if one was created - if zip_export and temp_dir is not None: + if self.zip_export and temp_dir is not None: temp_dir.cleanup() def dump(self, progress_bar_disable=False): @@ -466,14 +467,21 @@ class Command(BaseCommand): if self.delete: # 5. Remove files which we did not explicitly export in this run + if not self.zip_export: + for f in self.files_in_export_dir: + f.unlink() - for f in self.files_in_export_dir: - f.unlink() - - delete_empty_directories( - f.parent, - self.target, - ) + delete_empty_directories( + f.parent, + self.target, + ) + else: + # 5. Remove anything in the original location (before moving the zip) + for item in self.original_target.glob("*"): + if item.is_dir(): + shutil.rmtree(item) + else: + item.unlink() def check_and_copy(self, source, source_checksum, target: Path): if target in self.files_in_export_dir: diff --git a/src/documents/tests/test_management_exporter.py b/src/documents/tests/test_management_exporter.py index a51bd4662..888572b58 100644 --- a/src/documents/tests/test_management_exporter.py +++ b/src/documents/tests/test_management_exporter.py @@ -42,7 +42,7 @@ from documents.tests.utils import paperless_environment class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): def setUp(self) -> None: - self.target = tempfile.mkdtemp() + self.target = Path(tempfile.mkdtemp()) self.addCleanup(shutil.rmtree, self.target) self.user = User.objects.create(username="temp_admin") @@ -496,6 +496,54 @@ class TestExportImport(DirectoriesMixin, FileSystemAssertsMixin, TestCase): self.assertIn("manifest.json", zip.namelist()) self.assertIn("version.json", zip.namelist()) + @override_settings(PASSPHRASE="test") + def test_export_zipped_with_delete(self): + """ + GIVEN: + - Request to export documents to zipfile + - There is one existing file in the target + - There is one existing directory in the target + WHEN: + - Documents are exported + - deletion of existing files is requested + THEN: + - Zipfile is created + - Zipfile contains exported files + - The existing file and directory in target are removed + """ + shutil.rmtree(os.path.join(self.dirs.media_dir, "documents")) + shutil.copytree( + os.path.join(os.path.dirname(__file__), "samples", "documents"), + os.path.join(self.dirs.media_dir, "documents"), + ) + + # Create stuff in target directory + existing_file = self.target / "test.txt" + existing_file.touch() + existing_dir = self.target / "somedir" + existing_dir.mkdir(parents=True) + + self.assertIsFile(existing_file) + self.assertIsDir(existing_dir) + + args = ["document_exporter", self.target, "--zip", "--delete"] + + call_command(*args) + + expected_file = os.path.join( + self.target, + f"export-{timezone.localdate().isoformat()}.zip", + ) + + self.assertIsFile(expected_file) + self.assertIsNotFile(existing_file) + self.assertIsNotDir(existing_dir) + + with ZipFile(expected_file) as zip: + self.assertEqual(len(zip.namelist()), 11) + self.assertIn("manifest.json", zip.namelist()) + self.assertIn("version.json", zip.namelist()) + def test_export_target_not_exists(self): """ GIVEN: From 355a434a077b178433848e313502e91eea988bd3 Mon Sep 17 00:00:00 2001 From: Thomas Falkenberg Date: Fri, 5 Jan 2024 19:43:22 +0100 Subject: [PATCH 25/33] Enhancement: fetch mails in bulk (#5249) Co-authored-by: Trenton H <797416+stumpylog@users.noreply.github.com> --- src/paperless_mail/mail.py | 1 + src/paperless_mail/tests/test_mail.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/src/paperless_mail/mail.py b/src/paperless_mail/mail.py index e8a9104f6..c79f03aff 100644 --- a/src/paperless_mail/mail.py +++ b/src/paperless_mail/mail.py @@ -569,6 +569,7 @@ class MailAccountHandler(LoggingMixin): criteria=criterias, mark_seen=False, charset=rule.account.character_set, + bulk=True, ) except Exception as err: raise MailError( diff --git a/src/paperless_mail/tests/test_mail.py b/src/paperless_mail/tests/test_mail.py index 8488ac65d..577db36fd 100644 --- a/src/paperless_mail/tests/test_mail.py +++ b/src/paperless_mail/tests/test_mail.py @@ -118,7 +118,7 @@ class BogusMailBox(AbstractContextManager): if username != self.USERNAME or access_token != self.ACCESS_TOKEN: raise MailboxLoginError("BAD", "OK") - def fetch(self, criteria, mark_seen, charset=""): + def fetch(self, criteria, mark_seen, charset="", bulk=True): msg = self.messages criteria = str(criteria).strip("()").split(" ") From d623af9c419daef081b33b6d6da97080083f0780 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 5 Jan 2024 11:15:14 -0800 Subject: [PATCH 26/33] Change: Use fnmatch for workflow path matching (#5250) --- src/documents/matching.py | 5 ++- src/documents/tests/test_workflows.py | 47 +++++++++++++++++++++++++++ 2 files changed, 51 insertions(+), 1 deletion(-) diff --git a/src/documents/matching.py b/src/documents/matching.py index ec28f80ca..15d839db6 100644 --- a/src/documents/matching.py +++ b/src/documents/matching.py @@ -296,7 +296,10 @@ def consumable_document_matches_workflow( if ( trigger.filter_path is not None and len(trigger.filter_path) > 0 - and not document.original_file.match(trigger.filter_path) + and not fnmatch( + document.original_file, + trigger.filter_path, + ) ): reason = ( f"Document path {document.original_file}" diff --git a/src/documents/tests/test_workflows.py b/src/documents/tests/test_workflows.py index 2e516e24c..92207742f 100644 --- a/src/documents/tests/test_workflows.py +++ b/src/documents/tests/test_workflows.py @@ -324,6 +324,53 @@ class TestWorkflows(DirectoriesMixin, FileSystemAssertsMixin, APITestCase): expected_str = f"Document matched {trigger2} from {w2}" self.assertIn(expected_str, cm.output[1]) + @mock.patch("documents.consumer.Consumer.try_consume_file") + def test_workflow_fnmatch_path(self, m): + """ + GIVEN: + - Existing workflow + WHEN: + - File that matches using fnmatch on path is consumed + THEN: + - Template overrides are applied + - Note: Test was added when path matching changed from pathlib.match to fnmatch + """ + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + sources=f"{DocumentSource.ApiUpload},{DocumentSource.ConsumeFolder},{DocumentSource.MailFetch}", + filter_path="*sample*", + ) + action = WorkflowAction.objects.create( + assign_title="Doc fnmatch title", + ) + action.save() + + w = Workflow.objects.create( + name="Workflow 1", + order=0, + ) + w.triggers.add(trigger) + w.actions.add(action) + w.save() + + test_file = self.SAMPLE_DIR / "simple.pdf" + + with mock.patch("documents.tasks.async_to_sync"): + with self.assertLogs("paperless.matching", level="DEBUG") as cm: + tasks.consume_file( + ConsumableDocument( + source=DocumentSource.ConsumeFolder, + original_file=test_file, + ), + None, + ) + m.assert_called_once() + _, overrides = m.call_args + self.assertEqual(overrides["override_title"], "Doc fnmatch title") + + expected_str = f"Document matched {trigger} from {w}" + self.assertIn(expected_str, cm.output[0]) + @mock.patch("documents.consumer.Consumer.try_consume_file") def test_workflow_no_match_filename(self, m): """ From 3115106dc1aab3f9f2995abba313d39686815b65 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 5 Jan 2024 19:04:31 -0800 Subject: [PATCH 27/33] Enhancement: add basic filters for listing custom fields (#5257) --- src/documents/filters.py | 10 ++++++ src/documents/tests/test_api_custom_fields.py | 36 +++++++++++++++++++ src/documents/views.py | 6 ++++ 3 files changed, 52 insertions(+) diff --git a/src/documents/filters.py b/src/documents/filters.py index c63484ee2..bab20a4dc 100644 --- a/src/documents/filters.py +++ b/src/documents/filters.py @@ -12,6 +12,7 @@ from guardian.utils import get_user_obj_perms_model from rest_framework_guardian.filters import ObjectPermissionsFilter from documents.models import Correspondent +from documents.models import CustomField from documents.models import Document from documents.models import DocumentType from documents.models import Log @@ -141,6 +142,15 @@ class SharedByUser(Filter): ) +class CustomFieldFilterSet(FilterSet): + class Meta: + model = CustomField + fields = { + "id": ID_KWARGS, + "name": CHAR_KWARGS, + } + + class CustomFieldsFilter(Filter): def filter(self, qs, value): if value: diff --git a/src/documents/tests/test_api_custom_fields.py b/src/documents/tests/test_api_custom_fields.py index af16d12b1..cf33e2800 100644 --- a/src/documents/tests/test_api_custom_fields.py +++ b/src/documents/tests/test_api_custom_fields.py @@ -662,3 +662,39 @@ class TestCustomField(DirectoriesMixin, APITestCase): self.assertEqual(resp.status_code, status.HTTP_200_OK) self.assertEqual(doc5.custom_fields.first().value, [1]) + + def test_custom_field_filters(self): + custom_field_string = CustomField.objects.create( + name="Test Custom Field String", + data_type=CustomField.FieldDataType.STRING, + ) + custom_field_date = CustomField.objects.create( + name="Test Custom Field Date", + data_type=CustomField.FieldDataType.DATE, + ) + custom_field_int = CustomField.objects.create( + name="Test Custom Field Int", + data_type=CustomField.FieldDataType.INT, + ) + + response = self.client.get( + f"{self.ENDPOINT}?id={custom_field_string.id}", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + results = response.data["results"] + self.assertEqual(len(results), 1) + + response = self.client.get( + f"{self.ENDPOINT}?id__in={custom_field_string.id},{custom_field_date.id}", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + results = response.data["results"] + self.assertEqual(len(results), 2) + + response = self.client.get( + f"{self.ENDPOINT}?name__icontains=Int", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + results = response.data["results"] + self.assertEqual(len(results), 1) + self.assertEqual(results[0]["name"], custom_field_int.name) diff --git a/src/documents/views.py b/src/documents/views.py index 83f2fc321..d6b90cbfd 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -66,6 +66,7 @@ from documents.data_models import ConsumableDocument from documents.data_models import DocumentMetadataOverrides from documents.data_models import DocumentSource from documents.filters import CorrespondentFilterSet +from documents.filters import CustomFieldFilterSet from documents.filters import DocumentFilterSet from documents.filters import DocumentTypeFilterSet from documents.filters import ObjectOwnedOrGrantedPermissionsFilter @@ -1438,6 +1439,11 @@ class CustomFieldViewSet(ModelViewSet): serializer_class = CustomFieldSerializer pagination_class = StandardPagination + filter_backends = ( + DjangoFilterBackend, + OrderingFilter, + ) + filterset_class = CustomFieldFilterSet model = CustomField From a82e3771aeca3520b8adeb6518ff0e9460ebbb27 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Fri, 5 Jan 2024 21:01:57 -0800 Subject: [PATCH 28/33] Fix: Allows pre-consume scripts to modify the working path again (#5260) * Allows pre-consume scripts to modify the working path again and generally cleans up some confusion about working copy vs original --- docs/advanced_usage.md | 5 ++++ src/documents/consumer.py | 35 ++++++++++++++-------------- src/documents/parsers.py | 4 +++- src/documents/tests/test_consumer.py | 12 +++++----- src/paperless_tesseract/parsers.py | 9 ++++--- 5 files changed, 37 insertions(+), 28 deletions(-) diff --git a/docs/advanced_usage.md b/docs/advanced_usage.md index ca5ed4321..4bbd7753d 100644 --- a/docs/advanced_usage.md +++ b/docs/advanced_usage.md @@ -136,6 +136,11 @@ script can access the following relevant environment variables set: be triggered, leading to failures as two tasks work on the same document path +!!! warning + + If your script modifies `DOCUMENT_WORKING_PATH` in a non-deterministic + way, this may allow duplicate documents to be stored + A simple but common example for this would be creating a simple script like this: diff --git a/src/documents/consumer.py b/src/documents/consumer.py index 11faeea43..b7a559575 100644 --- a/src/documents/consumer.py +++ b/src/documents/consumer.py @@ -135,24 +135,24 @@ class Consumer(LoggingMixin): """ Confirm the input file still exists where it should """ - if not os.path.isfile(self.path): + if not os.path.isfile(self.original_path): self._fail( ConsumerStatusShortMessage.FILE_NOT_FOUND, - f"Cannot consume {self.path}: File not found.", + f"Cannot consume {self.original_path}: File not found.", ) def pre_check_duplicate(self): """ Using the MD5 of the file, check this exact file doesn't already exist """ - with open(self.path, "rb") as f: + with open(self.original_path, "rb") as f: checksum = hashlib.md5(f.read()).hexdigest() existing_doc = Document.objects.filter( Q(checksum=checksum) | Q(archive_checksum=checksum), ) if existing_doc.exists(): if settings.CONSUMER_DELETE_DUPLICATES: - os.unlink(self.path) + os.unlink(self.original_path) self._fail( ConsumerStatusShortMessage.DOCUMENT_ALREADY_EXISTS, f"Not consuming {self.filename}: It is a duplicate of" @@ -211,7 +211,7 @@ class Consumer(LoggingMixin): self.log.info(f"Executing pre-consume script {settings.PRE_CONSUME_SCRIPT}") - working_file_path = str(self.path) + working_file_path = str(self.working_copy) original_file_path = str(self.original_path) script_env = os.environ.copy() @@ -343,8 +343,8 @@ class Consumer(LoggingMixin): Return the document object if it was successfully created. """ - self.path = Path(path).resolve() - self.filename = override_filename or self.path.name + self.original_path = Path(path).resolve() + self.filename = override_filename or self.original_path.name self.override_title = override_title self.override_correspondent_id = override_correspondent_id self.override_document_type_id = override_document_type_id @@ -377,17 +377,16 @@ class Consumer(LoggingMixin): self.log.info(f"Consuming {self.filename}") # For the actual work, copy the file into a tempdir - self.original_path = self.path tempdir = tempfile.TemporaryDirectory( prefix="paperless-ngx", dir=settings.SCRATCH_DIR, ) - self.path = Path(tempdir.name) / Path(self.filename) - copy_file_with_basic_stats(self.original_path, self.path) + self.working_copy = Path(tempdir.name) / Path(self.filename) + copy_file_with_basic_stats(self.original_path, self.working_copy) # Determine the parser class. - mime_type = magic.from_file(self.path, mime=True) + mime_type = magic.from_file(self.working_copy, mime=True) self.log.debug(f"Detected mime type: {mime_type}") @@ -406,7 +405,7 @@ class Consumer(LoggingMixin): document_consumption_started.send( sender=self.__class__, - filename=self.path, + filename=self.working_copy, logging_group=self.logging_group, ) @@ -444,7 +443,7 @@ class Consumer(LoggingMixin): ConsumerStatusShortMessage.PARSING_DOCUMENT, ) self.log.debug(f"Parsing {self.filename}...") - document_parser.parse(self.path, mime_type, self.filename) + document_parser.parse(self.working_copy, mime_type, self.filename) self.log.debug(f"Generating thumbnail for {self.filename}...") self._send_progress( @@ -454,7 +453,7 @@ class Consumer(LoggingMixin): ConsumerStatusShortMessage.GENERATING_THUMBNAIL, ) thumbnail = document_parser.get_thumbnail( - self.path, + self.working_copy, mime_type, self.filename, ) @@ -527,7 +526,7 @@ class Consumer(LoggingMixin): self._write( document.storage_type, - self.original_path, + self.working_copy, document.source_path, ) @@ -560,9 +559,9 @@ class Consumer(LoggingMixin): document.save() # Delete the file only if it was successfully consumed - self.log.debug(f"Deleting file {self.path}") - os.unlink(self.path) + self.log.debug(f"Deleting file {self.working_copy}") self.original_path.unlink() + self.working_copy.unlink() # https://github.com/jonaswinkler/paperless-ng/discussions/1037 shadow_file = os.path.join( @@ -735,7 +734,7 @@ class Consumer(LoggingMixin): )[:127], content=text, mime_type=mime_type, - checksum=hashlib.md5(self.original_path.read_bytes()).hexdigest(), + checksum=hashlib.md5(self.working_copy.read_bytes()).hexdigest(), created=create_date, modified=create_date, storage_type=storage_type, diff --git a/src/documents/parsers.py b/src/documents/parsers.py index 3215d49a6..b823ae9ce 100644 --- a/src/documents/parsers.py +++ b/src/documents/parsers.py @@ -322,7 +322,9 @@ class DocumentParser(LoggingMixin): self.logging_group = logging_group self.settings = self.get_settings() os.makedirs(settings.SCRATCH_DIR, exist_ok=True) - self.tempdir = tempfile.mkdtemp(prefix="paperless-", dir=settings.SCRATCH_DIR) + self.tempdir = Path( + tempfile.mkdtemp(prefix="paperless-", dir=settings.SCRATCH_DIR), + ) self.archive_path = None self.text = None diff --git a/src/documents/tests/test_consumer.py b/src/documents/tests/test_consumer.py index 1db90ee54..24f7ff338 100644 --- a/src/documents/tests/test_consumer.py +++ b/src/documents/tests/test_consumer.py @@ -928,7 +928,7 @@ class PreConsumeTestCase(TestCase): @override_settings(PRE_CONSUME_SCRIPT=None) def test_no_pre_consume_script(self, m): c = Consumer() - c.path = "path-to-file" + c.working_copy = "path-to-file" c.run_pre_consume_script() m.assert_not_called() @@ -938,7 +938,7 @@ class PreConsumeTestCase(TestCase): def test_pre_consume_script_not_found(self, m, m2): c = Consumer() c.filename = "somefile.pdf" - c.path = "path-to-file" + c.working_copy = "path-to-file" self.assertRaises(ConsumerError, c.run_pre_consume_script) @mock.patch("documents.consumer.run") @@ -947,7 +947,7 @@ class PreConsumeTestCase(TestCase): with override_settings(PRE_CONSUME_SCRIPT=script.name): c = Consumer() c.original_path = "path-to-file" - c.path = "/tmp/somewhere/path-to-file" + c.working_copy = "/tmp/somewhere/path-to-file" c.task_id = str(uuid.uuid4()) c.run_pre_consume_script() @@ -963,7 +963,7 @@ class PreConsumeTestCase(TestCase): subset = { "DOCUMENT_SOURCE_PATH": c.original_path, - "DOCUMENT_WORKING_PATH": c.path, + "DOCUMENT_WORKING_PATH": c.working_copy, "TASK_ID": c.task_id, } self.assertDictEqual(environment, {**environment, **subset}) @@ -991,7 +991,7 @@ class PreConsumeTestCase(TestCase): with override_settings(PRE_CONSUME_SCRIPT=script.name): with self.assertLogs("paperless.consumer", level="INFO") as cm: c = Consumer() - c.path = "path-to-file" + c.working_copy = "path-to-file" c.run_pre_consume_script() self.assertIn( @@ -1024,7 +1024,7 @@ class PreConsumeTestCase(TestCase): with override_settings(PRE_CONSUME_SCRIPT=script.name): c = Consumer() - c.path = "path-to-file" + c.working_copy = "path-to-file" self.assertRaises( ConsumerError, c.run_pre_consume_script, diff --git a/src/paperless_tesseract/parsers.py b/src/paperless_tesseract/parsers.py index 047a171b2..c699d8ea5 100644 --- a/src/paperless_tesseract/parsers.py +++ b/src/paperless_tesseract/parsers.py @@ -90,16 +90,18 @@ class RasterisedDocumentParser(DocumentParser): with Image.open(image) as im: return im.mode in ("RGBA", "LA") - def remove_alpha(self, image_path: str): + def remove_alpha(self, image_path: str) -> Path: + no_alpha_image = Path(self.tempdir) / "image-no-alpha" subprocess.run( [ settings.CONVERT_BINARY, "-alpha", "off", image_path, - image_path, + no_alpha_image, ], ) + return no_alpha_image def get_dpi(self, image) -> Optional[int]: try: @@ -251,7 +253,8 @@ class RasterisedDocumentParser(DocumentParser): f"Removing alpha layer from {input_file} " "for compatibility with img2pdf", ) - self.remove_alpha(input_file) + # Replace the input file with the non-alpha + ocrmypdf_args["input_file"] = self.remove_alpha(input_file) if dpi: self.log.debug(f"Detected DPI for image {input_file}: {dpi}") From bd35030c5928b9fce6b9c7fee1346abe69b999bc Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Fri, 5 Jan 2024 21:08:24 -0800 Subject: [PATCH 29/33] Fix: Crash in barcode ASN reading when the file type isn't supported (#5261) * Fixes a random crash in the barcode ASN reading so it doesn't try to access a not created temp dir * Don't parse the barcodes twice, store the result instead --- src/documents/barcodes.py | 5 ++++- src/documents/tasks.py | 7 +++++-- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/documents/barcodes.py b/src/documents/barcodes.py index 005531107..5a2c3381a 100644 --- a/src/documents/barcodes.py +++ b/src/documents/barcodes.py @@ -90,6 +90,9 @@ class BarcodeReader: """ asn = None + if not self.supported_mime_type: + return None + # Ensure the barcodes have been read self.detect() @@ -215,7 +218,7 @@ class BarcodeReader: # This file is really borked, allow the consumption to continue # but it may fail further on except Exception as e: # pragma: no cover - logger.warning( + logger.exception( f"Exception during barcode scanning: {e}", ) diff --git a/src/documents/tasks.py b/src/documents/tasks.py index 19e40db5b..abb9cd39d 100644 --- a/src/documents/tasks.py +++ b/src/documents/tasks.py @@ -152,10 +152,13 @@ def consume_file( return "File successfully split" # try reading the ASN from barcode - if settings.CONSUMER_ENABLE_ASN_BARCODE and reader.asn is not None: + if ( + settings.CONSUMER_ENABLE_ASN_BARCODE + and (located_asn := reader.asn) is not None + ): # Note this will take precedence over an API provided ASN # But it's from a physical barcode, so that's good - overrides.asn = reader.asn + overrides.asn = located_asn logger.info(f"Found ASN in barcode: {overrides.asn}") template_overrides = Consumer().get_workflow_overrides( From 37e34d92def3feb7fe8c986c7586c9f889fe74cb Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Fri, 5 Jan 2024 21:20:38 -0800 Subject: [PATCH 30/33] Replaces deprecated Django with standard library (#5262) --- src/documents/index.py | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/src/documents/index.py b/src/documents/index.py index e4c9bcb34..90bc15e7b 100644 --- a/src/documents/index.py +++ b/src/documents/index.py @@ -4,11 +4,12 @@ import os from collections import Counter from contextlib import contextmanager from datetime import datetime +from datetime import timezone from typing import Optional from dateutil.parser import isoparse from django.conf import settings -from django.utils import timezone +from django.utils import timezone as django_timezone from guardian.shortcuts import get_users_with_perms from whoosh import classify from whoosh import highlight @@ -370,7 +371,7 @@ class DelayedQuery: class LocalDateParser(English): def reverse_timezone_offset(self, d): - return (d.replace(tzinfo=timezone.get_current_timezone())).astimezone( + return (d.replace(tzinfo=django_timezone.get_current_timezone())).astimezone( timezone.utc, ) @@ -401,7 +402,7 @@ class DelayedFullTextQuery(DelayedQuery): ) qp.add_plugin( DateParserPlugin( - basedate=timezone.now(), + basedate=django_timezone.now(), dateparser=LocalDateParser(), ), ) From e2be166e67c34550db9beb5ce1e61242e0dc238e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 5 Jan 2024 21:26:30 -0800 Subject: [PATCH 31/33] Update django.po --- src/locale/en_US/LC_MESSAGES/django.po | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/locale/en_US/LC_MESSAGES/django.po b/src/locale/en_US/LC_MESSAGES/django.po index 3cb19d63c..ce77ebe79 100644 --- a/src/locale/en_US/LC_MESSAGES/django.po +++ b/src/locale/en_US/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2024-01-01 07:54-0800\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" "PO-Revision-Date: 2022-02-17 04:17\n" "Last-Translator: \n" "Language-Team: English\n" @@ -777,12 +777,12 @@ msgstr "" msgid "Invalid color." msgstr "" -#: documents/serialisers.py:988 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1085 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "" From ef335517ceed03a9106ecc2597216532f7dba35c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Fri, 5 Jan 2024 21:28:32 -0800 Subject: [PATCH 32/33] New Crowdin translations by GitHub Action (#5146) Co-authored-by: Crowdin Bot --- src-ui/src/locale/messages.af_ZA.xlf | 1436 +++++++++------- src-ui/src/locale/messages.ar_AR.xlf | 1434 +++++++++------- src-ui/src/locale/messages.be_BY.xlf | 1434 +++++++++------- src-ui/src/locale/messages.bg_BG.xlf | 1434 +++++++++------- src-ui/src/locale/messages.ca_ES.xlf | 1446 +++++++++------- src-ui/src/locale/messages.cs_CZ.xlf | 1446 +++++++++------- src-ui/src/locale/messages.da_DK.xlf | 1434 +++++++++------- src-ui/src/locale/messages.de_DE.xlf | 1458 +++++++++------- src-ui/src/locale/messages.el_GR.xlf | 1434 +++++++++------- src-ui/src/locale/messages.es_ES.xlf | 1436 +++++++++------- src-ui/src/locale/messages.fi_FI.xlf | 1434 +++++++++------- src-ui/src/locale/messages.fr_FR.xlf | 1454 +++++++++------- src-ui/src/locale/messages.he_IL.xlf | 1434 +++++++++------- src-ui/src/locale/messages.hr_HR.xlf | 1434 +++++++++------- src-ui/src/locale/messages.hu_HU.xlf | 1436 +++++++++------- src-ui/src/locale/messages.id_ID.xlf | 1434 +++++++++------- src-ui/src/locale/messages.it_IT.xlf | 1434 +++++++++------- src-ui/src/locale/messages.ko_KR.xlf | 2104 ++++++++++++++---------- src-ui/src/locale/messages.lb_LU.xlf | 1434 +++++++++------- src-ui/src/locale/messages.lv_LV.xlf | 1434 +++++++++------- src-ui/src/locale/messages.nl_NL.xlf | 1450 +++++++++------- src-ui/src/locale/messages.no_NO.xlf | 1434 +++++++++------- src-ui/src/locale/messages.pl_PL.xlf | 1524 ++++++++++------- src-ui/src/locale/messages.pt_BR.xlf | 1434 +++++++++------- src-ui/src/locale/messages.pt_PT.xlf | 1434 +++++++++------- src-ui/src/locale/messages.ro_RO.xlf | 1434 +++++++++------- src-ui/src/locale/messages.ru_RU.xlf | 1434 +++++++++------- src-ui/src/locale/messages.sk_SK.xlf | 1434 +++++++++------- src-ui/src/locale/messages.sl_SI.xlf | 1434 +++++++++------- src-ui/src/locale/messages.sr_CS.xlf | 1434 +++++++++------- src-ui/src/locale/messages.sv_SE.xlf | 1434 +++++++++------- src-ui/src/locale/messages.th_TH.xlf | 1434 +++++++++------- src-ui/src/locale/messages.tr_TR.xlf | 1434 +++++++++------- src-ui/src/locale/messages.uk_UA.xlf | 1440 +++++++++------- src-ui/src/locale/messages.vi_VN.xlf | 1434 +++++++++------- src-ui/src/locale/messages.zh_CN.xlf | 1530 ++++++++++------- src-ui/src/locale/messages.zh_TW.xlf | 1434 +++++++++------- src/locale/af_ZA/LC_MESSAGES/django.po | 471 ++++-- src/locale/ar_AR/LC_MESSAGES/django.po | 425 +++-- src/locale/be_BY/LC_MESSAGES/django.po | 465 ++++-- src/locale/bg_BG/LC_MESSAGES/django.po | 361 +++- src/locale/ca_ES/LC_MESSAGES/django.po | 361 +++- src/locale/cs_CZ/LC_MESSAGES/django.po | 475 ++++-- src/locale/da_DK/LC_MESSAGES/django.po | 463 ++++-- src/locale/de_DE/LC_MESSAGES/django.po | 361 +++- src/locale/el_GR/LC_MESSAGES/django.po | 361 +++- src/locale/es_ES/LC_MESSAGES/django.po | 361 +++- src/locale/fi_FI/LC_MESSAGES/django.po | 441 +++-- src/locale/fr_FR/LC_MESSAGES/django.po | 375 ++++- src/locale/he_IL/LC_MESSAGES/django.po | 361 +++- src/locale/hr_HR/LC_MESSAGES/django.po | 493 ++++-- src/locale/hu_HU/LC_MESSAGES/django.po | 361 +++- src/locale/id_ID/LC_MESSAGES/django.po | 379 ++++- src/locale/it_IT/LC_MESSAGES/django.po | 361 +++- src/locale/ko_KR/LC_MESSAGES/django.po | 569 +++++-- src/locale/lb_LU/LC_MESSAGES/django.po | 465 ++++-- src/locale/lv_LV/LC_MESSAGES/django.po | 405 +++-- src/locale/nl_NL/LC_MESSAGES/django.po | 451 +++-- src/locale/no_NO/LC_MESSAGES/django.po | 423 +++-- src/locale/pl_PL/LC_MESSAGES/django.po | 387 ++++- src/locale/pt_BR/LC_MESSAGES/django.po | 483 ++++-- src/locale/pt_PT/LC_MESSAGES/django.po | 473 ++++-- src/locale/ro_RO/LC_MESSAGES/django.po | 463 ++++-- src/locale/ru_RU/LC_MESSAGES/django.po | 383 ++++- src/locale/sk_SK/LC_MESSAGES/django.po | 473 ++++-- src/locale/sl_SI/LC_MESSAGES/django.po | 361 +++- src/locale/sr_CS/LC_MESSAGES/django.po | 389 ++++- src/locale/sv_SE/LC_MESSAGES/django.po | 457 +++-- src/locale/th_TH/LC_MESSAGES/django.po | 445 +++-- src/locale/tr_TR/LC_MESSAGES/django.po | 449 +++-- src/locale/uk_UA/LC_MESSAGES/django.po | 541 ++++-- src/locale/vi_VN/LC_MESSAGES/django.po | 405 +++-- src/locale/zh_CN/LC_MESSAGES/django.po | 363 +++- src/locale/zh_TW/LC_MESSAGES/django.po | 405 +++-- 74 files changed, 44807 insertions(+), 24868 deletions(-) diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index 8aab30476..d737b9b7f 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Ten slotte, namens elke bydraer aan hierdie gemeenskapsondersteunde projek, dankie dat u Paperless-ngx gebruik! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Verwerp + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Bewaar + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Logboeke @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Naam @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Aksies @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Skrap @@ -1401,66 +1575,6 @@ Geen bewaarde aansigte gedefinieer. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Bewaar - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Lêertake @@ -1589,26 +1703,6 @@ Wis seleksie - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - - - Created @@ -1789,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Gebruikers & Groepe @@ -1875,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1923,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Wysig @@ -2007,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2023,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Dit kan nie ontdaan word nie. @@ -2043,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2059,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Gaan voort @@ -2174,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentasie @@ -2358,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2398,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2406,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2414,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 is beskikbaar. @@ -2422,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Klik om te bekyk. @@ -2430,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx kan outomaties na bywerkings soek @@ -2438,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Hoe werk dit? @@ -2446,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Bywerking beskikbaar @@ -2650,306 +2744,6 @@ Afgelope jaar - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Ken dokumenttipe toe - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Ken korrespondent toe - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Fout - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Kanselleer - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3008,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Hoofletterongevoelig + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Kanselleer + Create new correspondent @@ -3414,6 +3276,18 @@ Ken titel toe van + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Ken dokumenttipe toe + Assign correspondent from @@ -3422,6 +3296,18 @@ Ken korrespondent toe van + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Ken korrespondent toe + Assign owner from rule @@ -3430,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Fout + Only process attachments @@ -3742,6 +3644,330 @@ Wysig gebruikersrekening + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3831,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4354,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4851,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Inhoud @@ -4859,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4871,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Datum gewysig @@ -4879,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Datum toegevoeg @@ -4887,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Medialêernaam @@ -4895,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Oorspronklike lêernaam @@ -4903,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Oorspronklike MD5 kontrolesom @@ -4911,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Oorspronklike lêergrootte @@ -4919,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Oorspronklike MIME-tipe @@ -4927,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 MD5-kontrolesomargief @@ -4935,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Lêergrootteargief @@ -4943,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Oorspronklike dokumentmetadata @@ -4951,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Geargiveerdedokumentmetadata @@ -4959,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Voorskou @@ -4967,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4975,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Voer wagwoord in @@ -4987,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Bewaar & volgende @@ -4995,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Verwerp - An error occurred loading content: @@ -6085,86 +6311,6 @@ Oplaai word geïnisieer… - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6721,6 +6867,78 @@ Wil u regtig die etiket “” skrap? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6897,6 +7115,118 @@ Geen: Deaktiveer ooreenkomste + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index 79d4a6bad..55a9ad487 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -393,13 +393,13 @@ إدارة حسابات البريد الإلكتروني وقواعد الاستيراد التلقائي للمستندات. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - قوالب الاستهلاك تعطيك التحكم بدقة في عملية استخراج المستندات. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ أخيرا، بالنيابة عن كل مساهم في هذا المشروع المدعوم من المجتمع، شكرا لك على استخدام Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + تجاهل + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + حفظ + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 السجلات @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + اسم @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + إجراءات @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + حذف @@ -1401,66 +1575,6 @@ لا توجد آراء محفوظة. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - حفظ - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 ملف المهام @@ -1589,24 +1703,6 @@ إزالة التحديد - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 المستخدمين & المجموعات @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + تحرير @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + لا يمكن التراجع عن هذه العملية. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + متابعة @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 الوثائق @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - قوالب الاستهلاك - - - Templates src/app/components/app-frame/app-frame.component.html 245 - قوالب + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 Github @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 متوفر. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 انقر للعرض. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx يتحقق تلقائياً من وجود تحديثات @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 كيف يعمل هذا؟ @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 يتوفر تحديث @@ -2648,306 +2744,6 @@ العام الماضي - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - ترتيب الفرز - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - المرشحات - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - معالجة المستندات التي تتطابق مع جميع الفلاتر المحددة أدناه. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - تصفية المصادر - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - تصفية اسم الملف - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - فقط المستندات التي تتطابق تماما مع اسم هذا المِلَفّ إذا. المحارف البديلة مثل *.pdf أو *الفواتير* مسموح بها. لأنها غير حساسة. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - مسار التصفية - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - تطبيق على المستندات التي تتطابق مع هذا المسار. البطاقات البرية المحددة كما * مسموح بها. حالة غير حساسة.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - تصفية قاعدة البريد - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - تطبيق على المستندات المستهلكة عبر هذه القاعدة البريدية. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - المهام - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - تعيين العنوان - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - يمكن أن تتضمن بعض العناصر النائبة، انظر <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>المستندات</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - تعيين وسوم - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - تعيين نوع المستند - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - تعيين مراسل - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - تعيين مسار التخزين - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - تعيين مالك - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - تعيين أذونات العرض - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - تعيين أذونات التعديل - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - خطأ - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - إلغاء - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - ‏مِلَفّ الاستهلاك - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - تحميل API - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - جلب البريد - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - إنشاء قالب استهلاك جديد - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - تعديل قالب الاستهلاك - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + حالة غير حساسة + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + إلغاء + Create new correspondent @@ -3412,6 +3276,18 @@ تعيين العنوان من + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + تعيين نوع المستند + Assign correspondent from @@ -3420,6 +3296,18 @@ تعيين مراسل من + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + تعيين مراسل + Assign owner from rule @@ -3428,6 +3316,22 @@ تعيين المالك من القاعدة + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + خطأ + Only process attachments @@ -3740,6 +3644,330 @@ تعديل حساب المستخدم + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + ترتيب الفرز + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + تعيين العنوان + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + تعيين وسوم + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + تعيين مسار التخزين + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + تعيين مالك + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + تعيين أذونات العرض + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + تعيين أذونات التعديل + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + تصفية اسم الملف + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + فقط المستندات التي تتطابق تماما مع اسم هذا المِلَفّ إذا. المحارف البديلة مثل *.pdf أو *الفواتير* مسموح بها. لأنها غير حساسة. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + تصفية المصادر + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + مسار التصفية + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + تطبيق على المستندات التي تتطابق مع هذا المسار. البطاقات البرية المحددة كما * مسموح بها. حالة غير حساسة.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + تصفية قاعدة البريد + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + تطبيق على المستندات المستهلكة عبر هذه القاعدة البريدية. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + ‏مِلَفّ الاستهلاك + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + تحميل API + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + جلب البريد + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + الحالة @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 محتوى @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 تاريخ التعديل @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 تاريخ الإضافة @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 اسم ملف الوسائط @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 اسم الملف الأصلي @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 مجموع MD5 الاختباري للأصل @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 حجم الملف الأصلي @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 نوع mime الأصلي @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 مجموع MD5 الاختباري للأرشيف @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 حجم ملف الأرشيف @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 بيانات التعريف للمستند الأصلي @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 بيانات التعريف للمستند الأصلي @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 معاينة @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 أدخل كلمة المرور @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 حفظ & التالي @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 حفظ & وإغلاق - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - تجاهل - An error occurred loading content: @@ -6083,86 +6311,6 @@ بَدْء التحميل... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - اضافة قالب - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - مصادر المستند - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - لا توجد قوالب محددة. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - قالب محفوظ "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - خطأ في حفظ القالب. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - تأكيد حذف القالب - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - هذه العملية ستقوم بحذف هذا القالب بشكل دائم. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - قالب محذوف - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - حدث خطأ أثناء حذف القالب. - correspondent @@ -6719,6 +6867,78 @@ هل ترغب حقاً في حذف العلامة " + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ لا شيء: تعطيل المطابقة + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index 95a37ac6f..aa68bc343 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Нарэшце, ад імя кожнага ўдзельніка гэтага праекта, які падтрымліваецца супольнасцю, дзякуй за выкарыстанне Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Адхіліць + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Захаваць + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Логі @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Назва @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Дзеянні @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Выдаліць @@ -1401,66 +1575,6 @@ Няма захаваных праглядаў. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Захаваць - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Файлавыя задачы @@ -1589,24 +1703,6 @@ Ачысціць выбранае - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Рэдагаваць @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Гэтую аперацыю нельга адмяніць. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Працягнуць @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Дакументацыя @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 даступна. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Націсніце, каб убачыць. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx можа аўтаматычна правяраць наяўнасць абнаўленняў @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Як гэта працуе? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Даступна абнаўленне @@ -2648,306 +2744,6 @@ Апошні год - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Assign document type - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assign correspondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Памылка - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Скасаваць - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Без уліку рэгістра + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Скасаваць + Create new correspondent @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Assign document type + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assign correspondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Памылка + Only process attachments @@ -3740,6 +3644,330 @@ Edit user account + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Змест @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Дата змянення @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Дата дадання @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Імя медыяфайла @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Арыгінальная назва файла @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Арыгінальная кантрольная сума MD5 @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Арыгінальны памер файла @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Арыгінальны MIME тып @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 MD5 сума архіва @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Памер файла архіва @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Арыгінальныя метададзеныя дакумента @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Метададзеныя архіўнага дакумента @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Preview @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Увядзіце пароль @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Захаваць & наступны @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Адхіліць - An error occurred loading content: @@ -6083,86 +6311,6 @@ Пачатак загрузкі... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Вы сапраўды хочаце выдаліць тэг ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index 7a11148ce..94eb43051 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -393,13 +393,13 @@ Управлявайте имейл профили и правила за автоматично импортиране на документи. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Шаблоните за консумация дават по-фин контрол върху процеса за приемане на документи. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ И накрая, от името на всеки участник в този проект, поддържан от общността, благодарим Ви, че използвате Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Откажи + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Запазване + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Дневници @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Име @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Действия @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Изтриване @@ -1401,66 +1575,6 @@ Няма запазени дефинирани изгледи. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Запазване - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Файлови задачи @@ -1589,24 +1703,6 @@ Изчистване на избора - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Потребители & Групи @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Редактиране @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Това действие не може да бъде отменено. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Продължи @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Документация @@ -2356,21 +2452,21 @@ Персонализирани полета - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Шаблони за консумация - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Шаблони + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 е налично. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Натисни за преглед. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx може автоматично да проверява за актуализации @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Как работи това? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Налична актуализация @@ -2648,306 +2744,6 @@ Миналата година - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Ред на сортиране - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Филтри - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Обработване на документи, които отговарят на all филтри, посочени по-долу. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Филтриране на източници - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Филтриране по файлово име - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Прилага се към документи, които отговарят на това файлово име. Позволени са заместващи символи като *.pdf или *invoice*. Нечувствителен към големи и малки букви. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Филтриране на път - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Прилага се към документи, които отговарят на този път. Позволени са заместващи символи, посочени като *. Нечувствителен към големината на буквите.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Правило за филтриране на поща - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Прилагане за документи, консумирани чрез това правило за поща. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Задания - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Задаване на заглавие - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Може да съдържа някои заместващи елементи (placeholders), вижте <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>документацията</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Задаване на етикет - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Задаване на тип на документ - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Задаване на кореспондент - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Задаване нa път за съхранение - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Присвояване на персонализирани полета - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Задаване на собственик - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Задаване на права за разглеждане - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Задаване на права за промяна - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Грешка - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Отмяна - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Папка за консумация - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - Качване от API - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Извличане на поща - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Създаване на шаблон за консумация - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Промяна на шаблон за консумация - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Без чувствителност към големината на буквите + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Отмяна + Create new correspondent @@ -3412,6 +3276,18 @@ Присвояване на заглавие от + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Задаване на тип на документ + Assign correspondent from @@ -3420,6 +3296,18 @@ Присвояване на кореспондент от + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Задаване на кореспондент + Assign owner from rule @@ -3428,6 +3316,22 @@ Присвояване на собственик от правило + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Грешка + Only process attachments @@ -3740,6 +3644,330 @@ Промяна на потребителски профил + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Ред на сортиране + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Задаване на заглавие + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Задаване на етикет + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Задаване нa път за съхранение + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Присвояване на персонализирани полета + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Задаване на собственик + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Задаване на права за разглеждане + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Задаване на права за промяна + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Филтриране по файлово име + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Прилага се към документи, които отговарят на това файлово име. Позволени са заместващи символи като *.pdf или *invoice*. Нечувствителен към големи и малки букви. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Филтриране на източници + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Филтриране на път + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Прилага се към документи, които отговарят на този път. Позволени са заместващи символи, посочени като *. Нечувствителен към големината на буквите.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Правило за филтриране на поща + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Прилагане за документи, консумирани чрез това правило за поща. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Папка за консумация + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + Качване от API + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Извличане на поща + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Състояние @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Съдържание @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Дата на промяна @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Дата на добавяне @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Име на медиен файл @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Оригинално име на файла @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Оригинална контролна сума MD5 @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Оригинален размер на файла @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Оригинален mime тип @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Архивна контролна сума MD5 @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Размер на архива @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Оригинални метаданни на документ @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Архивирани метаданни на документа @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Преглед @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Въведете парола @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Запази & следващото @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Запази & затвори - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Откажи - An error occurred loading content: @@ -6083,86 +6311,6 @@ Започва качване... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Шаблони за консумация - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Добавяне на шаблон - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Източници на документи - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Няма дефинирани шаблони. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Запазен шаблон "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Грешка при запазване на шаблона. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Потвърдете изтриването на шаблона - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Тази операция ще изтрие за постоянно този шаблон. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Изтрит шаблон - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Грешка при изтриване на шаблон. - correspondent @@ -6719,6 +6867,78 @@ Наистина ли искате да изтриете етикета ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Няма: Деактивиране на съвпадението + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index 1f7128da6..aee726865 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -393,13 +393,13 @@ Gestioneu els comptes de correu electrònic i les regles per importar documents automàticament. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Les plantilles de consum us ofereixen un control més detallat sobre el procés d'ingestió de documents. + Els Workflows us ofereixen més control sobre la canalització de documents. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Finalment, en nom de tots els col·laboradors d'aquest projecte recolzat per la comunitat, gràcies per utilitzar Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuració + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Llegir documentació sobre aquesta opció + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Habilita + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Descarta + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Desa + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error recuperant configuració + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + JSON no vàlid + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuració actualitzada + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + S'ha produït un error en actualitzar la configuració + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Logs @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Nom @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Accions @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Esborra @@ -1401,66 +1575,6 @@ Sense vistes definides. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Desa - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Tasques Arxiu @@ -1589,24 +1703,6 @@ Neteja selecció - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1689,7 +1785,7 @@ src/app/components/admin/tasks/tasks.component.html 123,125 - Failed + Fallit Complete @@ -1697,7 +1793,7 @@ src/app/components/admin/tasks/tasks.component.html 131,133 - Complete + Completat Started @@ -1705,7 +1801,7 @@ src/app/components/admin/tasks/tasks.component.html 139,141 - Started + Començat Queued @@ -1713,7 +1809,7 @@ src/app/components/admin/tasks/tasks.component.html 147,149 - Queued + En cua Dismiss selected @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Usuaris & Grups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Edita @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Aquesta acció no es pot desfer. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Procedir @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Documentació @@ -2356,21 +2452,21 @@ Camps personalitzats - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Plantilles consumicions - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Plantilles + + src/app/components/manage/workflows/workflows.component.html + 1 + + Fluxos Mail @@ -2396,15 +2492,15 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 - File Tasks + Tasques de fitxers GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 està disponible. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Cliqueu per veure. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx pot cercar actualitzacions automàticament @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Com funciona? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Actualització disponible @@ -2648,306 +2744,6 @@ Darrer any - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Ordre ordenació - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filtres - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Processa documents que coincideixin all amb aquests filtres. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filtra orígens - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filtra nom arxiu - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Aplica als documents que coincideixen amb aquest nom de fitxer. Es permeten els comodins com ara *.pdf o *factura*. Cas insensible. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filtra ruta - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Aplica als documents que coincideixen amb aquest camí. Es permeten els comodins especificats com a *. Cas insensible.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filtra regla de correu - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Aplica a documents consumits amb aquesta regla de correu. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignacions - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assigna títol - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Pot incloure alguns marcadors de posició, vegeu <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assigna etiquetes - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Assigna tipus document - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assigna corresponsal - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assigna ruta emmagatzematge - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assigna camnps personalitzats - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assigna propietari - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assigna permisos de visionat - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assigna permisos d'edició - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Error - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Cancel·la - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Directori consumició - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - Pujada API - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Recollida Correu - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Crea plantilla consumició - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edita plantilla consumició - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + No distingeix majúscules - minúscules + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Cancel·la + Create new correspondent @@ -3412,6 +3276,18 @@ Assigna títol des de + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Assigna tipus document + Assign correspondent from @@ -3420,6 +3296,18 @@ Assigna corresponsal des de + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assigna corresponsal + Assign owner from rule @@ -3428,6 +3316,22 @@ Assigna propietari des de regla + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Error + Only process attachments @@ -3740,6 +3644,330 @@ Editar compte usuari + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Ordre ordenació + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Habilitat + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Disparadors + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Activar el flux de treball a: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Afegir Disparador + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Aplica Accions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Afegir Acció + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Tipus acció + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assigna títol + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Pot incloure marcadors, vegeu <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentació</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assigna etiquetes + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assigna ruta emmagatzematge + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assigna camnps personalitzats + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assigna propietari + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assigna permisos de visionat + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assigna permisos d'edició + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Tipus disparador + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Disparadors per documents coincidents amb all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filtra nom arxiu + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Aplica als documents que coincideixen amb aquest nom de fitxer. Es permeten els comodins com ara *.pdf o *factura*. Cas insensible. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filtra orígens + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filtra ruta + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Aplica als documents que coincideixen amb aquest camí. Es permeten els comodins especificats com a *. Cas insensible.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filtra regla de correu + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Aplica a documents consumits amb aquesta regla de correu. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Algorisme concordança contingut + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Algorisme concordança patró + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Té etiquetes + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Té corresponsal + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Té tipus de document + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Directori consumició + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + Pujada API + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Recollida Correu + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Començada Consumpció + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Afegit + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Actualitzat + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignació + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Afegir flux de treball + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Editar flux + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Estat @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Contingut @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Data modificació @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Data afegit @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Nom Arxiu @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Nom arxiu original @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Original MD5 checksum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Mida arxiu original @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Tipus mímic original @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 MD5 checksum arxivat @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Mida arxiu arxivat @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metadades del document original @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metadades del document arxivat @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Vista prèvia @@ -4965,19 +5201,19 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 - Notes + Notes Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Introdueix Contrasenya @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Desa & següent @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Desa & tanca - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Descarta - An error occurred loading content: @@ -6083,86 +6311,6 @@ Inicialitzant pujada... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Plantilles consumicions - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Afegir plantilla - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Fonts documents - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Sense plantilla definida. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Plantilla desada "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error al desar la plantilla. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirmació esborrat plantilla - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Això esborrarà definitivament la plantilla. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Plantilla Esborrada - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error esborrant la plantilla. - correspondent @@ -6719,6 +6867,78 @@ Esborrar etiqueta ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Afegir Flux + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Deshabilitat + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + Sense Fluxos definits. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Desat Flux "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error desant Flux. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirmació esborrat Flux + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + S'esborrarà el Flux permanentment. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Flux Eliminat + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error esborrant Flux. + Not Found @@ -6895,6 +7115,118 @@ Cap: Deshabilita coincidències + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + Opcions OCR + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Tipus Sortida + + + Language + + src/app/data/paperless-config.ts + 81 + + Idioma + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pàgines + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Salta Arxivat Arxiu + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + DPI Imatge + + + Clean + + src/app/data/paperless-config.ts + 118 + + Neteja + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Alinea + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Gira les pàgines + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Angle Rotació + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Màxims Pixels Imatge + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Estratègia de conversió de color + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + Arguments OCR + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index 5fa70e3dc..9d36b1754 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -279,7 +279,7 @@ src/app/app.component.ts 90 - Document was added to Paperless-ngx. + Dokument byl přidán do Paperless-ngx. Open document @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Zrušit + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Uložit + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Záznamy @@ -467,7 +629,7 @@ src/app/components/admin/tasks/tasks.component.html 15 - Auto refresh + Automatické obnovení Loading... @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -571,7 +733,7 @@ src/app/components/admin/settings/settings.component.html 2 - Start tour + Zahájit prohlídku Open Django Admin @@ -827,7 +989,7 @@ src/app/services/rest/document.service.ts 25 - Notes + Poznámky Enable notes @@ -835,7 +997,7 @@ src/app/components/admin/settings/settings.component.html 173 - Enable notes + Povolit poznámky Permissions @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Název @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Akce @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Odstranit @@ -1401,66 +1575,6 @@ Nejsou definovány žádné uložené pohledy. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Uložit - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Úlohy souboru @@ -1589,24 +1703,6 @@ Clear selection - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1637,7 +1733,7 @@ src/app/components/admin/tasks/tasks.component.html 38 - Results + Výsledky Info @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Upravit @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Tuto operaci nelze vrátit zpět. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Proceed @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentace @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 je k dispozici. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Klikni pro zobrazení. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx umí automaticky kontrolovat aktualizace @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Jak to funguje? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 K dispozici je aktualizace @@ -2648,306 +2744,6 @@ Minulý rok - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Assign document type - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assign correspondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Chyba - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Zrušit - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Nerozlišovat velikost písmen + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Zrušit + Create new correspondent @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Assign document type + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assign correspondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Chyba + Only process attachments @@ -3740,6 +3644,330 @@ Upravit uživatelský účet + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Obsah @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Upraveno @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Přidána @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Název souboru @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Original filename @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Původní kontrolní součet MD5 @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Původní velikost souboru @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Původní typ mime @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Kontrolní součet MD5 archivu @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Velikost souboru archivu @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metadata původního dokumentu @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metadata archivovaného dokumentu @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Preview @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Enter Password @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Uložit & další @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Zrušit - An error occurred loading content: @@ -6083,86 +6311,6 @@ Initiating upload... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Opravdu chcete odstranit štítek ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index 17331b9f7..e6cb1f837 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Forkast + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Gem + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Logninger @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Navn @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Handlinger @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Slet @@ -1401,66 +1575,6 @@ Ingen gemte visninger. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Gem - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 File Tasks @@ -1589,24 +1703,6 @@ Clear selection - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Redigér @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Denne handling kan ikke fortrydes. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Proceed @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentation @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 er tilgængelig. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Klik for at se. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx can automatically check for updates @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 How does this work? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Opdatering tilgængelig @@ -2648,306 +2744,6 @@ Sidste år - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Assign document type - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assign correspondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Fejl - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Annullér - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Skelner ikke mellem store og små bogstaver + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Annullér + Create new correspondent @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Assign document type + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assign correspondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Fejl + Only process attachments @@ -3740,6 +3644,330 @@ Edit user account + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Indhold @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Ændringsdato @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Tilføjelsesdato @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Filnavn for medie @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Original filename @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Original MD5 kontrolsum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Original filstørrelse @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Original mimetype @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Arkiv MD5 kontrolsum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Arkiv filstørrelse @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Original dokumentmetadata @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Arkiveret dokumentmetadata @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Preview @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Indtast adgangskode @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Gem & næste @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Forkast - An error occurred loading content: @@ -6083,86 +6311,6 @@ Uploader... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Er du sikker på, at du vil slette etiketten ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index ea670b83c..c009fd186 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -393,13 +393,13 @@ Verwalten Sie E-Mail-Konten und Regeln für den automatischen Import von Dokumenten. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Verarbeitungsvorlagen geben Ihnen eine bessere Kontrolle über die Dokumentenverarbeitung beim Import. + Workflows geben Ihnen mehr Kontrolle über die Dokumentenpipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Wir bedanken uns im Namen aller Mitwirkenden dieses gemeinschaftlich unterstützten Projekts, dass Sie Paperless-ngx benutzen! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Konfiguration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Lesen Sie die Dokumentation zu dieser Einstellung + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Verwerfen + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Speichern + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Fehler beim Abrufen der Konfiguration + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Einstellungen aktualisiert + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + Fehler beim Aktualisieren der Konfiguration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Protokolle @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Name @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Aktionen @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Löschen @@ -1401,66 +1575,6 @@ Keine gespeicherten Ansichten vorhanden. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Speichern - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Dateiaufgaben @@ -1589,24 +1703,6 @@ Auswahl leeren - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1683,37 +1779,37 @@ {VAR_PLURAL, plural, =1 {Eine Aufgabe} other {Insgesamt Aufgaben}} - + Failed src/app/components/admin/tasks/tasks.component.html 123,125 - Failed + Fehlgeschlagen - + Complete src/app/components/admin/tasks/tasks.component.html 131,133 - Complete + Abgeschlossen - + Started src/app/components/admin/tasks/tasks.component.html 139,141 - Started + Gestartet - + Queued src/app/components/admin/tasks/tasks.component.html 147,149 - Queued + In Warteschlange Dismiss selected @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Benutzer & Gruppen @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Bearbeiten @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Diese Aktion kann nicht rückgängig gemacht werden. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Fortfahren @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentation @@ -2356,21 +2452,21 @@ Benutzerdefinierte Felder - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Verarbeitungsvorlagen - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Verarbeitungsvorlagen + + src/app/components/manage/workflows/workflows.component.html + 1 + + Arbeitsabläufe Mail @@ -2392,19 +2488,19 @@ Administration - + File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 - File Tasks + Dateiaufgaben GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 ist verfügbar. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Zum Anzeigen klicken. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx kann automatisch auf Aktualisierungen überprüfen @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Wie funktioniert das? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Aktualisierung verfügbar @@ -2648,306 +2744,6 @@ Letztes Jahr - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sortierreihenfolge - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filter - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Dokumente verarbeiten, die mit allen unten ausgewählten Filtern übereinstimmen. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Quellen filtern - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Dateinamen filtern - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Auf Dokumente anwenden, die mit diesem Dateinamen übereinstimmen. Platzhalter wie *.pdf oder *rechung* sind erlaubt. Groß- und Kleinschreibung wird nicht beachtet. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Pfad filtern - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Auf Dokumente anwenden, die mit diesem Pfad übereinstimmen. Platzhalter wie * sind zulässig. Groß- und Kleinschreibung wird nicht beachtet.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - E-Mail-Regel filtern - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Auf Dokumente anwenden, die über diese E-Mail-Regel verarbeitet wurden. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Zuweisungen - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Titel zuweisen - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Kann Platzhalter beinhalten, siehe <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>Dokumentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Tags zuweisen - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Dokumenttyp zuweisen - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Korrespondent zuweisen - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Speicherpfad zuweisen - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Benutzerdefinierte Felder zuweisen - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Eigentümer zuweisen - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Anzeigeberechtigungen zuweisen - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Bearbeitungsberechtigungen zuweisen - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Fehler - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Abbrechen - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Importordner - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API-Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - E-Mail-Abruf - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Neue Verarbeitungsvorlage erstellen - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Verarbeitungsvorlage bearbeiten - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Groß-/Kleinschreibung irrelevant + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Abbrechen + Create new correspondent @@ -3412,6 +3276,18 @@ Titelzuweisung + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Dokumenttyp zuweisen + Assign correspondent from @@ -3420,6 +3296,18 @@ Korrespondentenzuweisung + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Korrespondent zuweisen + Assign owner from rule @@ -3428,6 +3316,22 @@ Eigentümer von dieser Regel zuweisen + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Fehler + Only process attachments @@ -3740,6 +3644,330 @@ Benutzerkonto bearbeiten + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sortierreihenfolge + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Aktiviert + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Auslöser + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Auslöser hinzufügen + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Aktionen anwenden: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Aktion hinzufügen + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Aktionstyp + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Titel zuweisen + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Kann einige Platzhalter enthalten, siehe <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>Dokumentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Tags zuweisen + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Speicherpfad zuweisen + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Benutzerdefinierte Felder zuweisen + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Eigentümer zuweisen + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Anzeigeberechtigungen zuweisen + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Bearbeitungsberechtigungen zuweisen + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Auslösetyp + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Auslöser für Dokumente, die mit allen Filtern übereinstimmen. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Dateinamen filtern + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Auf Dokumente anwenden, die mit diesem Dateinamen übereinstimmen. Platzhalter wie *.pdf oder *rechung* sind erlaubt. Groß- und Kleinschreibung wird nicht beachtet. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Quellen filtern + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Pfad filtern + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Auf Dokumente anwenden, die mit diesem Pfad übereinstimmen. Platzhalter wie * sind zulässig. Groß- und Kleinschreibung wird nicht beachtet.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + E-Mail-Regel filtern + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Auf Dokumente anwenden, die über diese E-Mail-Regel verarbeitet wurden. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Algorithmus für Inhalte, die übereinstimmen + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Enhält Tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Hat Korrespondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Hat Dokumentyp + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Importordner + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API-Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + E-Mail-Abruf + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Dokument hinzugefügt + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Dokument aktualisiert + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Zuordnung + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Neuen Arbeitsablauf erstellen + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Arbeitsablauf bearbeiten + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Inhalt @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Geändert am @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Hinzugefügt am @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Media-Dateiname @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Ursprünglicher Dateiname @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 MD5-Prüfsumme Original @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Dateigröße Original @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 MIME-Typ Original @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 MD5-Prüfsumme Archiv @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Dateigröße Archiv @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metadaten Original @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metadaten Archiv @@ -4957,27 +5193,27 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Vorschau - + Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 - Notes + Notizen Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Kennwort eingeben @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Speichern & weiter @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Speichern & schließen - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Verwerfen - An error occurred loading content: @@ -6083,86 +6311,6 @@ Beginne Upload... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Verarbeitungsvorlagen - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Vorlage hinzufügen - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Dokumentquellen - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Keine Vorlagen vorhanden. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Vorlage „“ gespeichert. - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Fehler beim Speichern der Vorlage. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Löschen der Vorlage bestätigen - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Diese Aktion wird diese Vorlage dauerhaft löschen. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Vorlage gelöscht - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Fehler beim Löschen der Vorlage. - correspondent @@ -6719,6 +6867,78 @@ Möchten Sie das Tag „“ wirklich löschen? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Arbeitsablauf hinzufügen + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Deaktiviert + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + Keine Arbeitsabläufe festgelegt. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Arbeitsablauf "" gespeichert. + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Fehler beim Speichern des Arbeitsablaufs. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Löschen des Arbeitsablaufs bestätigen + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + Dieser Vorgang löscht diesen Arbeitsablauf dauerhaft. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Gelöschter Arbeitsablauf + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Fehler beim Löschen des Arbeitsablaufs. + Not Found @@ -6895,6 +7115,118 @@ Keine: Deaktiviere automatische Zuweisung + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR-Einstellungen + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Ausgangstyp + + + Language + + src/app/data/paperless-config.ts + 81 + + Sprache + + + Pages + + src/app/data/paperless-config.ts + 88 + + Seiten + + + Mode + + src/app/data/paperless-config.ts + 95 + + Modus + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Archivdatei überspringen + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Bild DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Seiten drehen + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max. Bildpixel + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Farbkonvertierungsstrategie + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR-Argumente + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index 6ed529407..01a705753 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Τέλος, εκ μέρους κάθε συνεισφέροντος σε αυτό το έργο που υποστηρίζεται από την κοινότητα, σας ευχαριστούμε που χρησιμοποιείτε το Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Απόρριψη + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Αποθήκευση + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Αρχεία Καταγραφής @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Όνομα @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Ενέργειες @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Διαγραφή @@ -1401,66 +1575,6 @@ Δεν έχουν οριστεί αποθηκευμένες προβολές. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Αποθήκευση - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Εργασίες Αρχείων @@ -1589,24 +1703,6 @@ Καθαρισμός επιλογής - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Χρήστες & Ομάδες @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Επεξεργασία @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Αυτή η λειτουργία δεν μπορεί να αναιρεθεί. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Συνέχεια @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Τεκμηρίωση @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 είναι διαθέσιμο. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Κάνε κλικ για προβολή. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Το Paperless-ngx μπορεί να ελέγξει αυτόματα για ενημερώσεις @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Πώς λειτουργεί; @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Υπάρχει διαθέσιμη ενημέρωση @@ -2648,306 +2744,6 @@ Προηγούμενο έτος - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Ανάθεση τύπου εγγράφου - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Ανάθεση ανταποκριτή - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Σφάλμα - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Ακύρωση - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Χωρίς διάκριση πεζών/κεφαλαίων + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Ακύρωση + Create new correspondent @@ -3412,6 +3276,18 @@ Ανάθεση τίτλου από + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Ανάθεση τύπου εγγράφου + Assign correspondent from @@ -3420,6 +3296,18 @@ Ανάθεση ανταποκριτή από + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Ανάθεση ανταποκριτή + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Σφάλμα + Only process attachments @@ -3740,6 +3644,330 @@ Επεξεργασία λογαριασμού χρήστη + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Κατάσταση @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Περιεχόμενο @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Ημερομηνία τροποποίησης @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Ημερομηνία προσθήκης @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Όνομα αρχείου πολυμέσων @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Πρωτότυπο όνομα αρχείου @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Αρχικό checksum MD5 @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Αρχικό μέγεθος αρχείου @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Αρχικός τύπος mime @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Αρχειοθέτηση MD5 checksum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Μέγεθος αρχείου αρχειοθέτησης @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Πρωτότυπα μεταδεδομένα εγγράφου @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Αρχειοθετημένα μεταδεδομένα εγγράφου @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Προεπισκόπηση @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Εισαγωγή Κωδικού Πρόσβασης @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Αποθήκευση & επόμενο @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Αποθήκευση & κλείσιμο - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Απόρριψη - An error occurred loading content: @@ -6083,86 +6311,6 @@ Εκκίνηση μεταφόρτωσης... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Θέλετε πραγματικά να διαγράψετε την ετικέτα ""; + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Κανένα: Απενεργοποίηση ταιριάσματος + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index 0af952e89..2a0a890b4 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -393,13 +393,13 @@ Gestiona las cuentas de correo electrónico y las reglas para la importación automática de documentos. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Las plantillas de consumo le dan un control más preciso sobre el proceso de ingestión de documentos. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Por último, en nombre de todos los colaboradores de este proyecto apoyado por la comunidad, ¡gracias por utilizar Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Descartar + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Guardar + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Registros @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Nombre @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Acciones @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Borrar @@ -1401,66 +1575,6 @@ No hay ninguna vista guardada definida - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Guardar - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Tareas de archivo @@ -1589,24 +1703,6 @@ Limpiar selección - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1777,7 +1873,7 @@ src/app/components/admin/tasks/tasks.component.ts 139 - fallida/s + fallidas Users & Groups @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Usuarios & Grupos @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Editar @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Esta operación no se puede deshacer. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Continuar @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Documentación @@ -2356,21 +2452,21 @@ Campos Personalizados - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Plantillas de consumo - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Plantillas + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 está disponible. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Haz clic para ver. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx puede comprobar automáticamente si hay actualizaciones @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 ¿Cómo funciona? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Actualización disponible @@ -2648,306 +2744,6 @@ Último año - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Orden de clasificación - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filtros - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Procesar los documentos que coincidan con todos los filtros especificados a continuación. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filtrar fuentes - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filtrar nombre del archivo - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Aplicar a documentos que coincidan con este nombre de archivo. Comodines como *.pdf o *factura* están permitidos. No distingue mayúsculas. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filtrar ruta - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Aplicar a documentos que coincidan con esta ruta. Comodines especificados como * están permitidos. No distingue mayúsculas.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filtrar regla de correo - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Aplicar a los documentos consumidos mediante esta regla de correo. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Tareas - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Asignar título - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Puede incluir algunos marcadores de posición, vea <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentación</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Asignar etiquetas - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Asignar tipo de documento - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Asignar interlocutor - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Asignar ruta de almacenamiento - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Asignar campos personalizados - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Asignar dueño - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Asignar permisos de vista - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Asignar permisos de edición - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Error - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Cancelar - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consumir carpeta - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - Carga de API - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Buscar correo - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Crear nueva plantilla de consumo - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Editar plantilla de consumo - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Insensible a mayúsculas y minusculas + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Cancelar + Create new correspondent @@ -3412,6 +3276,18 @@ Asignar título desde + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Asignar tipo de documento + Assign correspondent from @@ -3420,6 +3296,18 @@ Asignar interlocutor desde + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Asignar interlocutor + Assign owner from rule @@ -3428,6 +3316,22 @@ Asignar dueño de la regla + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Error + Only process attachments @@ -3740,6 +3644,330 @@ Editar cuenta de usuario + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Orden de clasificación + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Asignar título + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Asignar etiquetas + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Asignar ruta de almacenamiento + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Asignar campos personalizados + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Asignar dueño + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Asignar permisos de vista + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Asignar permisos de edición + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filtrar nombre del archivo + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Aplicar a documentos que coincidan con este nombre de archivo. Comodines como *.pdf o *factura* están permitidos. No distingue mayúsculas. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filtrar fuentes + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filtrar ruta + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Aplicar a documentos que coincidan con esta ruta. Comodines especificados como * están permitidos. No distingue mayúsculas.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filtrar regla de correo + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Aplicar a los documentos consumidos mediante esta regla de correo. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consumir carpeta + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + Carga de API + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Buscar correo + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Estado @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Contenido @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Fecha de modificación @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Fecha de subida @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Nombre del fichero @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Nombre del archivo original @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Comprobación MD5 original @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Tamaño del fichero original @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Tipo MIME original @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Comprobación MD5 del archivo @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Tamaño del archivo @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metadatos originales @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metadatos archivados @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Vista previa @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Introducir contraseña @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Guardar y continuar @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Guardar & cerrar - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Descartar - An error occurred loading content: @@ -6083,86 +6311,6 @@ Iniciando subida... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Plantillas de consumo - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Añadir plantilla - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Fuentes del documento - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No se ha definido ninguna plantilla. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Plantilla guardada "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error al guardar la plantilla. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirmar eliminación de plantilla - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Esta operación eliminará permanentemente esta plantilla. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Plantilla borrada - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error al eliminar plantilla. - correspondent @@ -6719,6 +6867,78 @@ ¿Estás seguro de querer borrar la etiqueta ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Ninguno: Deshabilitar coincidencias + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index f3871951a..15d652669 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -393,13 +393,13 @@ Hallitse sähköpostitilejä ja sääntöjä asiakirjojen automaattiseen tuomiseen. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Lopuksi kiitän kaikkia osallistujia, jotka ovat käyttäneet Paperless-ngxia! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Hylkää + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Tallenna + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Lokit @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Nimi @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Toiminnot @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Poista @@ -1401,66 +1575,6 @@ Tallennettuja näkymiä ei ole määritelty. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Tallenna - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Tiedostotehtävät @@ -1589,24 +1703,6 @@ Tyhjennä valinta - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Käyttäjät & ryhmät @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Muokkaa @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Toimintoa ei voi peruuttaa. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Jatka @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentaatio @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Mallipohjat + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 on saatavilla. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Näytä klikkaamalla. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx voi tarkistaa päivitykset automaattisesti @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Kuinka tämä toimii? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Päivitys saatavilla @@ -2648,306 +2744,6 @@ Edellinen vuosi - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Järjestys - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Suodattimet - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Määritä asiakirjatyyppi - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Määritä yhteyshenkilö - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Määritä omistaja - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Määritä katseluoikeudet - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Määritä muokkausoikeudet - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Virhe - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Peruuta - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API-lähetys - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Kirjainkoko ei vaikuta + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Peruuta + Create new correspondent @@ -3412,6 +3276,18 @@ Aseta otsikko kohteesta + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Määritä asiakirjatyyppi + Assign correspondent from @@ -3420,6 +3296,18 @@ Määritä yhteyshenkilö + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Määritä yhteyshenkilö + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Virhe + Only process attachments @@ -3740,6 +3644,330 @@ Muokkaa käyttäjätiliä + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Järjestys + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Määritä omistaja + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Määritä katseluoikeudet + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Määritä muokkausoikeudet + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API-lähetys + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Tila @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Sisältö @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Muokkauspäivämäärä @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Lisäyspäivämäärä @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Median tiedostonimi @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Alkuperäinen tiedoston nimi @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Alkuperäinen MD5-tarkistussumma @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Alkuperäinen tiedostokoko @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Alkuperäinen mime-tyyppi @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Arkistoidun MD5-tarkistussumma @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Arkistoidun tiedostokoko @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Alkuperäisen asiakirjan metatiedot @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Arkistoidun dokumentin metatiedot @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Esikatsele @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Syötä salasana @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Tallenna & Lopeta @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Tallenna ja sulje - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Hylkää - An error occurred loading content: @@ -6083,86 +6311,6 @@ Aloittaa latausta... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Lisää mallipohja - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Asiakirjalähteet - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Mallipohjia ei ole määritelty. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Tallennettu mallipohja "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Virhe mallipohjaa tallentaessa. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Vahvsita mallipohja poisto - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Tämä toiminto poistaa tämän mallipohjan pysyvästi. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Poistettu mallipohja - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Virhe mallipohjaa poistaessa. - correspondent @@ -6719,6 +6867,78 @@ Haluatko varmasti poistaa asiakirjatagin ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Ei mitään: Poista käytöstä vertailu + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 391af67bd..c0995077e 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -393,13 +393,13 @@ Gérer les comptes de messagerie et les règles pour l'importation automatique de documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Les modèles de consommation vous donne un contrôle plus fin sur le processus sur la consommation de documents. + Les workflows vous donnent plus de contrôle sur le processus de traitement des documents. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Enfin, au nom de chaque contributeur à ce projet soutenu par la communauté, merci d'utiliser Paperless-ngx ! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Lire la documentation à propos de ce paramètre + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Activer + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Abandonner + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Enregistrer + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Erreur lors de la récupération de la configuration + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + JSON non valide + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration mise a jour + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + Une erreur s'est produite lors de la mise à jour de la configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Journaux @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Nom @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Actions @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Supprimer @@ -1401,66 +1575,6 @@ Aucune vue sauvegardée n'est définie. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Enregistrer - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Tâches sur les fichiers @@ -1589,24 +1703,6 @@ Désélectionner - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1689,7 +1785,7 @@ src/app/components/admin/tasks/tasks.component.html 123,125 - Failed + échoué(s) Complete @@ -1697,7 +1793,7 @@ src/app/components/admin/tasks/tasks.component.html 131,133 - Complete + terminé(s) Started @@ -1705,7 +1801,7 @@ src/app/components/admin/tasks/tasks.component.html 139,141 - Started + commencé(s) Queued @@ -1713,7 +1809,7 @@ src/app/components/admin/tasks/tasks.component.html 147,149 - Queued + Queued en attente Dismiss selected @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Utilisateurs & Groupes @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Modifier @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Cette action est irréversible. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Continuer @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Documentation @@ -2356,21 +2452,21 @@ Champs personnalisés - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Modèles de consommation - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Modèles + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,15 +2492,15 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 - File Tasks + tâche(s) sur fichiers GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 est disponible. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Cliquer pour visualiser. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx peut automatiquement vérifier la disponibilité des mises à jour @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Comment ça fonctionne ? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Mise à jour disponible @@ -2648,306 +2744,6 @@ L'année passée - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Ordre de tri - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filtres - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Traiter les documents qui correspondent à tous les filtres spécifiés ci-dessous. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filtrer les sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filtrer le nom de fichier - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Appliquer aux documents qui correspondent à ce nom de fichier. Les expressions telles que *.pdf ou *facture* sont autorisées. Insensible à la casse. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filtrer le chemin - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Appliquer aux documents qui correspondent à ce chemin. Les caractères génériques tels que "*" sont autorisés. Insensible à la casse.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Règle de filtrage des messages - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Appliquer aux documents traités par cette règle de courrier. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Affectations - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Attribuer un titre - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Peut inclure des espaces réservés, voir la documentation <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'></a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assigner des étiquettes - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Affectation du type de document - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Affecter le correspondant - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Attribuer un chemin de stockage - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Affecter un propriétaire - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Affecter des autorisations de vue - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assigner des autorisations d'édition - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Erreur - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Annuler - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Dossier de traitement - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - Chargement de l'API - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Récupération du courrier - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Créer un nouveau modèle de consommation - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Modifier le modèle de consommation - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Insensible à la casse + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Annuler + Create new correspondent @@ -3412,6 +3276,18 @@ Affectation du titre du document + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Affectation du type de document + Assign correspondent from @@ -3420,6 +3296,18 @@ Affectation du correspondant + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Affecter le correspondant + Assign owner from rule @@ -3428,6 +3316,22 @@ Affecter le propriétaire à la règle + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Erreur + Only process attachments @@ -3740,6 +3644,330 @@ Modifier le compte utilisateur + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Ordre de tri + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Activé + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Déclencheurs + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Déclencher un workflow sur : + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Ajouter un déclencheur + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Appliquer l’action : + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Ajouter une action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Type d'action + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Attribuer un titre + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Peut inclure certains placeholders, voir la <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assigner des étiquettes + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Attribuer un chemin de stockage + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Affecter des champs personnalisés + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Affecter un propriétaire + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Affecter des autorisations de vue + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assigner des autorisations d'édition + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Type de déclenchement + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Déclenche pour les documents qui correspondent à tousles filtres spécifiés ci-dessous. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filtrer le nom de fichier + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Appliquer aux documents qui correspondent à ce nom de fichier. Les expressions telles que *.pdf ou *facture* sont autorisées. Insensible à la casse. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filtrer les sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filtrer le chemin + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Appliquer aux documents qui correspondent à ce chemin. Les caractères génériques tels que "*" sont autorisés. Insensible à la casse.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Règle de filtrage des messages + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Appliquer aux documents traités par cette règle de courrier. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Algorithme de correspondance de contenu + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Modèle de correspondance au contenu + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Porte les étiquettes + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + A un correspondant + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + A un type de document + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Dossier de traitement + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + Chargement de l'API + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Récupération du courrier + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document ajouté + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document mis à jour + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignation + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Créer un nouveau workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Modifier le workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4036,7 +4268,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 56 - Shared by me + Partagé par moi Unowned @@ -4084,7 +4316,7 @@ src/app/components/common/preview-popup/preview-popup.component.html 4 - Error loading preview + Erreur du chargement de l'aperçu Edit Profile @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + État @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Contenu @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Date de modification @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Date d'ajout @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Nom de fichier du média @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Nom du fichier d'origine @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Somme de contrôle MD5 de l'original @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Taille du fichier original @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Type MIME de l'original @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Somme de contrôle MD5 de l'archive @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Taille du fichier archivé @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Métadonnées du document original @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Métadonnées du document archivé @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Prévisualisation @@ -4965,19 +5201,19 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 - Notes + note(s) Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Saisir le mot de passe @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Enregistrer & suivant @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Enregister & fermer - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Abandonner - An error occurred loading content: @@ -5123,7 +5351,7 @@ src/app/components/document-detail/document-detail.component.ts 698 - La relance de l'ORC 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. + La relance de l'ORC va démarrer en arrière-plan. Fermez et rouvrez ou rechargez ce document une fois l'opération terminée pour voir le nouveau contenu. Error executing operation @@ -5139,7 +5367,7 @@ src/app/components/document-detail/document-detail.component.ts 778 - Page Fit + Ajustement de la page Select: @@ -6083,86 +6311,6 @@ Démarrage du téléversement... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Modèles de consommation - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Ajouter un modèle - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Sources du document - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Aucun modèle défini. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Modèle enregistré. - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Erreur lors de l'enregistrement du modèle. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirmer la suppression du modèle - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Cette opération supprimera définitivement ce modèle. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Modèle supprimé - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Erreur lors de la suppression du modèle. - correspondent @@ -6719,6 +6867,78 @@ Voulez-vous vraiment supprimer l'étiquette "" ? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Ajouter un workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Désactivé + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + Aucun workflow défini. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Le workflow "" a été enregistré. + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Erreur lors de l'enregistrement du workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirmer la suppression du workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + Cette opération supprimera définitivement ce workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Workflow supprimé + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Erreur lors de la suppression du workflow. + Not Found @@ -6895,6 +7115,118 @@ Aucun : désactiver le rapprochement + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + Paramètres de ROC + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Type de sortie + + + Language + + src/app/data/paperless-config.ts + 81 + + Langue + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Ignorer le fichier d'archive + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + DPI de l'image + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Faire pivoter les pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Seuil de rotation des pages + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Nombre maximum de pixels pour une image + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Stratégie de conversion de couleurs + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + Arguments OCR + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index cb3c582e1..183ad5853 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + בטל + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + שמור + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 יומני רישום @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + שם @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + פעולות @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + מחק @@ -1401,66 +1575,6 @@ לא הוגדרה שמירת צפייה. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - שמור - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 משימות קבצים @@ -1589,24 +1703,6 @@ ניקוי בחירה - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + ערוך @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + פעולה זו אינה הפיכה. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + המשך @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 תיעוד @@ -2356,21 +2452,21 @@ שדות מותאמים - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - תבניות עיבוד - - - Templates src/app/components/app-frame/app-frame.component.html 245 - תבניות + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 זמין. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 לחץ להצגה. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx יכול לבדוק אוטומטית אם יש עדכונים @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 איך זה עובד? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 קיים עדכון @@ -2648,306 +2744,6 @@ שנה שעברה - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - סדר מיון - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - מסננים - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - מקורות מסננים - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - סנן לפי שם קובץ - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - מסנן לפי נתיב שמירה - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - סנן לפי כלל דואל - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - הקצאות - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - הקצה כותרת - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - הקצה תגיות - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - שייך סוג מסמך - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - שייך מכותב זה - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - הקצה נתיב אחסון - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - הקצה שדות מותאמים אישית - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - הקצה בעלים - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - הקצה הרשאות צפיה למשתמש - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - הקצה הרשאות עריכה למשתמש - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - שגיאה - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - ביטול - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + חסר רגישות תווים גדולים/קטנים (אנגלית) + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + ביטול + Create new correspondent @@ -3412,6 +3276,18 @@ שייך כותרת מ- + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + שייך סוג מסמך + Assign correspondent from @@ -3420,6 +3296,18 @@ שייך מכותב מ- + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + שייך מכותב זה + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + שגיאה + Only process attachments @@ -3740,6 +3644,330 @@ ערוך את החשבון + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + סדר מיון + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + הקצה כותרת + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + הקצה תגיות + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + הקצה נתיב אחסון + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + הקצה שדות מותאמים אישית + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + הקצה בעלים + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + הקצה הרשאות צפיה למשתמש + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + הקצה הרשאות עריכה למשתמש + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + סנן לפי שם קובץ + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + מקורות מסננים + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + מסנן לפי נתיב שמירה + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + סנן לפי כלל דואל + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + סטטוס @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 תוכן @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 תאריך שינוי @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 תאריך הוספה @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 שם קובץ המסמך @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 שם קובץ מקורי @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 סכום בדיקה MD5 לקובץ המקורי @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 גודל הקובץ המקורי @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 סוג ה-mime המקורי @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 סכום בדיקה MD5 לקובץ בארכיון @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 גודל הקובץ בארכיון @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 מטא-נתונים של המסמך המקורי @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 מטא-נתונים של המסמך בארכיון @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 תצוגה מקדימה @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 הזן סיסמה @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 שמור & הבא @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 שמור & סגור - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - בטל - An error occurred loading content: @@ -6083,86 +6311,6 @@ מאתחל העלאה... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - תבניות עיבוד - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - הוספת תבנית - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - מקורות המסמך - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - לא הוגדרו תבניות עיבוד - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - ארעה שגיאה בעת שמירת התבנית ‏. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - אישור מחיקת תבנית - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - פעולה הזאת תמחק את תבנית העיבוד הזו לצמיתות. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - תבנית שנמחקה - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - ארעה שגיאה בעת מחיקת התבנית ‏. - correspondent @@ -6719,6 +6867,78 @@ למחוק את התגית „”? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index 013e55f92..de3d42e57 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Discard + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Spremi + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Zapisnici @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Ime @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Radnje @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Obriši @@ -1401,66 +1575,6 @@ No saved views defined. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Spremi - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Zadaci datoteke @@ -1589,24 +1703,6 @@ Clear selection - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Uredi @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + This operation cannot be undone. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Proceed @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentacija @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 je dostupno. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Klikni za prikaz. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx može automatski provjeriti aktualizaciju @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Kako ovo radi? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Dostupno ažuriranje @@ -2648,306 +2744,6 @@ Prošla godina - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Assign document type - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assign correspondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Greška - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Odustani - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Neosjetljivo na velika i mala slova + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Odustani + Create new correspondent @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Assign document type + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assign correspondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Greška + Only process attachments @@ -3740,6 +3644,330 @@ Edit user account + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Content @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Date modified @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Date added @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Media filename @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Original filename @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Original MD5 checksum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Original file size @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Original mime type @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Archive MD5 checksum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Archive file size @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Original document metadata @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Archived document metadata @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Preview @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Enter Password @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Save & next @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Discard - An error occurred loading content: @@ -6083,86 +6311,6 @@ Pokretanje prijenosa... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Do you really want to delete the tag ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index c7839e485..59777635b 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -393,13 +393,13 @@ E-mail fiókok és a dokumentumok automatikus importálására vonatkozó szabályok kezelése. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - A feldolgozási sablonok segítségével finomabban szabályozhatja a dokumentumbeviteli folyamatot. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Végezetül, a közösség által támogatott projekt minden közreműködője nevében köszönjük, hogy használod a Paperless-ngx-et! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Eldob + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Mentés + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Naplók @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Név @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Tevékenységek @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Törlés @@ -1401,66 +1575,6 @@ Nincsenek mentett nézetek definiálva. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Mentés - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Fájl feladatok @@ -1589,26 +1703,6 @@ Kiválasztás törlése - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - - - Created @@ -1789,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Felhasználók & Csoportok @@ -1875,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1923,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Szerkesztés @@ -2007,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2023,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Ezt a műveletet nem lehet visszacsinálni. @@ -2043,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2059,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Folytassa a @@ -2174,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentáció @@ -2358,21 +2452,21 @@ Egyéni mezők - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Feldolgozási sablonok - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Sablonok + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2398,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2406,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2414,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 rendelkezésre áll. @@ -2422,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Kattintson a megtekintéshez. @@ -2430,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 A Paperless-ngx automatikusan ellenőrizni tudja a frissítéseket @@ -2438,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Hogyan működik ez? @@ -2446,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Frissítés elérhető @@ -2650,306 +2744,6 @@ Tavaly - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Rendezési sorrend - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Szűrők - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Az alábbiakban megadott összes szűrőnek megfelelő dokumentumok feldolgozása. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Szűrőforrások - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Szűrő fájlnév - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - A fájlnévnek megfelelő dokumentumokra alkalmazza. Az olyan helyettesítő karakterek, mint *.pdf vagy *számla* engedélyezettek. Nagy- és kisbetűkre nem érzékeny. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Szűrési útvonal - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Alkalmazza az erre az elérési útvonalra vonatkozó dokumentumokra. A *-gal megadott helyettesítő karakterek engedélyezettek. Nagy- és kisbetűket nem érzékeny.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Mail szabály szűrő - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Alkalmazza az ezen a levelezési szabályon keresztül feldolgozott dokumentumokra. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Feladatok - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Cím hozzárendelése - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Tartalmazhat néhány helykitöltő, lásd a <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>dokumentációt</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Címkék hozzárendelése - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Dokumentumtípus hozzárendelése - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Levelező kijelölése - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Tárolási útvonal hozzárendelése - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Egyedi mezők hozzárendelése - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Tulajdonos kijelölése - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Nézetjogosultságok hozzárendelése - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Szerkesztési engedélyek hozzárendelése - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Hiba - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Megszakít - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Feldolgozási mappa - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API feltöltés - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail lehívás - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Új feldolgozási sablon létrehozása - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Feldolgozási sablon szerkesztése - Matching algorithm @@ -3008,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Nagy- és kisbetű érzéketlen + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Megszakít + Create new correspondent @@ -3414,6 +3276,18 @@ Cím hozzárendelése a + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Dokumentumtípus hozzárendelése + Assign correspondent from @@ -3422,6 +3296,18 @@ Levelező hozzárendelése a + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Levelező kijelölése + Assign owner from rule @@ -3430,6 +3316,22 @@ Tulajdonos hozzárendelése szabályból + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Hiba + Only process attachments @@ -3742,6 +3644,330 @@ Felhasználói fiók szerkesztése + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Rendezési sorrend + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Cím hozzárendelése + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Címkék hozzárendelése + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Tárolási útvonal hozzárendelése + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Egyedi mezők hozzárendelése + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Tulajdonos kijelölése + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Nézetjogosultságok hozzárendelése + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Szerkesztési engedélyek hozzárendelése + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Szűrő fájlnév + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + A fájlnévnek megfelelő dokumentumokra alkalmazza. Az olyan helyettesítő karakterek, mint *.pdf vagy *számla* engedélyezettek. Nagy- és kisbetűkre nem érzékeny. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Szűrőforrások + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Szűrési útvonal + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Alkalmazza az erre az elérési útvonalra vonatkozó dokumentumokra. A *-gal megadott helyettesítő karakterek engedélyezettek. Nagy- és kisbetűket nem érzékeny.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Mail szabály szűrő + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Alkalmazza az ezen a levelezési szabályon keresztül feldolgozott dokumentumokra. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Feldolgozási mappa + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API feltöltés + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail lehívás + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3831,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4354,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Állapot @@ -4851,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Tartalom @@ -4859,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4871,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Módosított dátum @@ -4879,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Hozzáadás dátuma @@ -4887,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Média fájlnév @@ -4895,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Eredeti fájlnév @@ -4903,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Eredeti MD5 ellenőrző összeg @@ -4911,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Eredeti fájlméret @@ -4919,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Eredeti mime típus @@ -4927,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Archívum MD5 ellenőrző összege @@ -4935,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Archivált fájl mérete @@ -4943,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Eredeti dokumentum metaadatai @@ -4951,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Archivált dokumentum metaadatok @@ -4959,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Előnézet @@ -4967,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4975,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Jelszó megadása @@ -4987,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Mentés & következő @@ -4995,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Mentés & bezárás - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Eldob - An error occurred loading content: @@ -6085,86 +6311,6 @@ Feltöltés kezdeményezése... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Feldolgozási sablonok - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Sablon hozzáadása - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Dokumentumforrások - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Nincsenek sablonok definiálva. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Mentett sablon "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Hiba a sablon mentése során. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Sablon törlésének megerősítése - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Ez a művelet véglegesen törli ezt a sablont. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Törölt sablon - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Hiba a sablon törlésében. - correspondent @@ -6721,6 +6867,78 @@ Tényleg törölni szeretné a "" címkét? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6897,6 +7115,118 @@ Nincs: A párosítás kikapcsolása + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index f8ff095fd..bdcb55bef 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -393,13 +393,13 @@ Kelola akun surel dan aturan untuk pengimporan otomatis dokumen. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Terakhir, atas nama setiap kontributor untuk proyek yang didukung komunitas ini, terima kasih telah menggunakan Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Batalkan + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Simpan + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Log @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Nama @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Aksi @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Hapus @@ -1401,66 +1575,6 @@ No saved views defined. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Simpan - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Tugas File @@ -1589,24 +1703,6 @@ Hapus pilihan - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Sunting @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Tindakan ini tidak bisa dibatalkan. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Proceed @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentasi @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 telah tersedia. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Ketuk untuk melihat. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx dapat secara otomatis memeriksa pembaruan @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Bagaimana ini dapat bekerja? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Pembaruan tersedia @@ -2648,306 +2744,6 @@ Tahun lalu - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filter - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sumber - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter nama berkas - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter lokasi - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter aturan surat - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Tetapkan judul - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Tetapkan label - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Tetapkan jenis dokumen - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Tetapkan koresponden - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Tetapkan lokasi penyimpanan - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Tetapkan pemilik - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Tetapkan izin tampilan - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Tetapkan izin edit - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Galat - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Batalkan - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - Unggah Menggunakan API - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Case insensitive + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Batalkan + Create new correspondent @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Tetapkan jenis dokumen + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Tetapkan koresponden + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Galat + Only process attachments @@ -3740,6 +3644,330 @@ Ubah akun pengguna + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Tetapkan judul + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Tetapkan label + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Tetapkan lokasi penyimpanan + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Tetapkan pemilik + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Tetapkan izin tampilan + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Tetapkan izin edit + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter nama berkas + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sumber + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter lokasi + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter aturan surat + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + Unggah Menggunakan API + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Konten @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Tanggal dimodifikasi @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Tanggal ditambahkan @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Media filename @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Nama file asli @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Original MD5 checksum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Ukuran file asli @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Original mime type @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Archive MD5 checksum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Ukuran file arsip @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Original document metadata @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Archived document metadata @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Pratinjau @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Masukan Kata Sandi @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Simpan & lanjut @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Simpan & tutup - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Batalkan - An error occurred loading content: @@ -6083,86 +6311,6 @@ Mulai mengunggah... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Do you really want to delete the tag ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index e0a183acb..1c4ebd975 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -393,13 +393,13 @@ Gestisci account e-mail e le regole per l'importazione automatica dei documenti. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - I modelli di elaborazione offrono un controllo più accurato sul processo di elaborazione del documento. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Infine, a nome di ogni collaboratore di questo progetto supportato dalla comunità, grazie per utilizzare Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configurazione + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Leggi la documentazione relativa a questa impostazione + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Abilita + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Scarta + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Salva + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Errore nel recupero della configurazione + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + JSON non valido + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configurazione aggiornata + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + Si è verificato un errore nell'aggiornamento della configurazione + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Log @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Nome @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Azioni @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Elimina @@ -1401,66 +1575,6 @@ Nessuna vista salvata. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Salva - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Attività File @@ -1589,24 +1703,6 @@ Azzera selezione - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Utenti & gruppi @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Modifica @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Questa operazione non può essere annullata. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Continua @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Documentazione @@ -2356,21 +2452,21 @@ Campi personalizzati - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Modelli di elaborazione - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Modelli + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 è disponibile. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Clicca per visualizzare. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx può controllare automaticamente la presenza di aggiornamenti @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Come funziona? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Aggiornamento disponibile @@ -2648,306 +2744,6 @@ Ultimo anno - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Ordinamento - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filtri - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Elabora i documenti che corrispondono a tutti i filtri specificati sotto. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filtra sorgenti - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filtra nome file - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Elabora i documenti che corrispondono a questo nome. Puoi usare wildcard come *.pdf o *fattura*. Ignora maiuscole e minuscole. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filtro percorso - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Applica ai documenti che corrispondono a questo percorso. I caratteri wildcard come * sono permessi. Ignora maiuscole e minuscole.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Regola e-mail - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Applica ai documenti elaborati attraverso questa regola di posta. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Compiti - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assegna titolo - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Può includere alcuni segnaposti, vedi la <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentazione</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assegna tag - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Assegna tipo di documento - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assegna corrispondente - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assegna percorso di archiviazione - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assegna campi personalizzati - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assegna proprietario - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assegna permessi di visualizzazione - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assegna permessi di modifica - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Errore - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Annulla - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Cartella di elaborazione - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - Upload API - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Recupero Posta - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Crea nuovo modello di elaborazione - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Modifica modello di elaborazione - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Senza distinzione tra maiuscole e minuscole + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Annulla + Create new correspondent @@ -3412,6 +3276,18 @@ Assegna tittolo da + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Assegna tipo di documento + Assign correspondent from @@ -3420,6 +3296,18 @@ Assegna corrispondente da + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assegna corrispondente + Assign owner from rule @@ -3428,6 +3316,22 @@ Assegna proprietario dalla regola + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Errore + Only process attachments @@ -3740,6 +3644,330 @@ Modifica account utente + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Ordinamento + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Abilitato + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Aggiungi Azione + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Tipo di Azione + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assegna titolo + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assegna tag + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assegna percorso di archiviazione + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assegna campi personalizzati + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assegna proprietario + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assegna permessi di visualizzazione + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assegna permessi di modifica + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filtra nome file + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Elabora i documenti che corrispondono a questo nome. Puoi usare wildcard come *.pdf o *fattura*. Ignora maiuscole e minuscole. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filtra sorgenti + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filtro percorso + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Applica ai documenti che corrispondono a questo percorso. I caratteri wildcard come * sono permessi. Ignora maiuscole e minuscole.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Regola e-mail + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Applica ai documenti elaborati attraverso questa regola di posta. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Algoritmo di corrispondenza contenuti + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Modello di corrispondenza contenuti + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Cartella di elaborazione + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + Upload API + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Recupero Posta + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Documento Aggiunto + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Documento Aggiornato + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Stato @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Contenuto @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Data modifica @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Data aggiunta @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Nome file @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Nome file originale @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Checksum MD5 originale @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Dimensione file originale @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Tipo mime originale @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Checksum MD5 archivio @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Dimensione file archivio @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metadati del documento originale @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metadati del documento archiviato @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Anteprima @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Immettere Password @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Salva e vai al prossimo @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Salva & chiudi - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Scarta - An error occurred loading content: @@ -6083,86 +6311,6 @@ Avvio caricamento... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Modelli di elaborazione - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Aggiungi modello - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Origini del documento - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Nessun modello definito. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Modello " salvato. - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Errore durante il salvataggio del modello. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Conferma eliminazione modello - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Questa operazione eliminerà definitivamente questo modello. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Modello eliminato - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Errore durante l'eliminazione del modello. - correspondent @@ -6719,6 +6867,78 @@ Vuoi eliminare il tag ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabilitato + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Niente: disabilita la corrispondenza + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + Impostazioni OCR + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Tipo di Output + + + Language + + src/app/data/paperless-config.ts + 81 + + Lingua + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pagine + + + Mode + + src/app/data/paperless-config.ts + 95 + + Modalità + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + DPI Immagine + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index ddc4dd641..e29caebdc 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -8,7 +8,7 @@ node_modules/src/ngb-config.ts 13 - Close + 닫기 HH @@ -24,7 +24,7 @@ node_modules/src/ngb-config.ts 13 - Close + 닫기 «« @@ -44,7 +44,7 @@ node_modules/src/ngb-config.ts 13 - Select month + 월 선택 Previous month @@ -56,7 +56,7 @@ node_modules/src/ngb-config.ts 13 - Previous month + 지난달 @@ -82,7 +82,7 @@ node_modules/src/ngb-config.ts 13 - Hours + 시간 « @@ -98,7 +98,7 @@ node_modules/src/ngb-config.ts 13 - Previous + 이전 MM @@ -126,7 +126,7 @@ node_modules/src/ngb-config.ts 13 - Select year + 연도 선택 Next month @@ -138,7 +138,7 @@ node_modules/src/ngb-config.ts 13 - Next month + 다음 달 Next @@ -146,7 +146,7 @@ node_modules/src/ngb-config.ts 13 - Next + 다음 Minutes @@ -154,7 +154,7 @@ node_modules/src/ngb-config.ts 13 - Minutes + »» @@ -178,7 +178,7 @@ node_modules/src/ngb-config.ts 13 - First + 처음 Previous @@ -186,7 +186,7 @@ node_modules/src/ngb-config.ts 13 - Previous + 이전 Decrement hours @@ -202,7 +202,7 @@ node_modules/src/ngb-config.ts 13 - Next + 다음 Increment minutes @@ -218,7 +218,7 @@ node_modules/src/ngb-config.ts 13 - Last + 마지막 Decrement minutes @@ -242,7 +242,7 @@ node_modules/src/ngb-config.ts 13 - Seconds + Increment seconds @@ -279,7 +279,7 @@ src/app/app.component.ts 90 - Document was added to Paperless-ngx. + Paperless-ngx에 문서가 추가되었습니다. Open document @@ -291,7 +291,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 66 - Open document + 문서 열기 Could not add : @@ -299,7 +299,7 @@ src/app/app.component.ts 105 - Could not add : + 를 추가할 수 없습니다: Document is being processed by Paperless-ngx. @@ -307,7 +307,7 @@ src/app/app.component.ts 120 - Document is being processed by Paperless-ngx. + 문서가 Paperless-ngx에서 처리 중 입니다. Prev @@ -315,7 +315,7 @@ src/app/app.component.ts 126 - Prev + 이전 Next @@ -327,7 +327,7 @@ src/app/components/document-detail/document-detail.component.html 96 - Next + 다음 End @@ -335,7 +335,7 @@ src/app/app.component.ts 128 - 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. @@ -343,7 +343,7 @@ src/app/app.component.ts 134 - 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. @@ -351,7 +351,7 @@ src/app/app.component.ts 141 - 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. + 이곳에 파일을 드래그&드랍하여 업로드를 하거나 넣어둘 폴더에 갖다 두세요. Paperless-ngx의 모든 페이지에서 문서를 드래그&드랍 할 수 있습니다. 파일을 올리면 Paperless-ngx가 머신 러닝을 수행하게 될 것입니다. 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. @@ -359,7 +359,7 @@ src/app/app.component.ts 146 - 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. @@ -367,7 +367,7 @@ src/app/app.component.ts 153 - 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. @@ -375,7 +375,7 @@ src/app/app.component.ts 159 - 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. @@ -383,7 +383,7 @@ src/app/app.component.ts 164 - Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. + 태그, 기안자, 문서 타입 또는 저장 경로는 이 페이지에서 관리할 수 있습니다. 문서 편집창에서 또한 관리할 수 있습니다. Manage e-mail accounts and rules for automatically importing documents. @@ -391,15 +391,15 @@ src/app/app.component.ts 172 - Manage e-mail accounts and rules for automatically importing documents. + 이메일 계정과 규칙을 관리하여 자동으로 문서를 불러올 수 있습니다. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -415,7 +415,7 @@ src/app/app.component.ts 196 - Check out the settings for various tweaks to the web app and toggle settings for saved views. + 설정페이지에서 Thank you! 🙏 @@ -423,7 +423,7 @@ src/app/app.component.ts 204 - 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. @@ -431,7 +431,7 @@ src/app/app.component.ts 206 - 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. + 필수적인 기능을 다 알아봤습니다. 그렇지만 지금 여기서 다루지 못한 <em>수 많은 기능</em>들이 기다리고 있습니다. 기술문서 또는 프로젝트 Github에 방문하여 더 알아보거나 사용 중 발생한 이슈를 제보해주세요. Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -439,7 +439,169 @@ src/app/app.component.ts 208 - Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + 마지막으로, 이 커뮤니티 지원 프로젝트의 기여자들을 대표하여, Paperless-ngx를 이용해주셔서 감사합니다! + + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Discard + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + 저장 + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration Logs @@ -449,13 +611,13 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 - Logs + 로그 Auto refresh @@ -467,7 +629,7 @@ src/app/components/admin/tasks/tasks.component.html 15 - Auto refresh + 자동 새로고침 Loading... @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -539,7 +701,7 @@ src/app/components/manage/management-list/management-list.component.html 55 - Loading... + 로딩 중... Settings @@ -563,7 +725,7 @@ src/app/components/app-frame/app-frame.component.html 271 - Settings + 설정 Start tour @@ -571,7 +733,7 @@ src/app/components/admin/settings/settings.component.html 2 - Start tour + 둘러보기 Open Django Admin @@ -579,7 +741,7 @@ src/app/components/admin/settings/settings.component.html 4 - Open Django Admin + Django 관리페이지 열기 General @@ -587,7 +749,7 @@ src/app/components/admin/settings/settings.component.html 15 - General + 일반 Appearance @@ -595,7 +757,7 @@ src/app/components/admin/settings/settings.component.html 18 - Appearance + 디자인 Display language @@ -603,7 +765,7 @@ src/app/components/admin/settings/settings.component.html 22 - Display language + 언어 You need to reload the page after applying a new language. @@ -659,7 +821,7 @@ src/app/components/admin/settings/settings.component.html 82 - Items per page + 페이지당 표시 항목 수 Document editor @@ -667,7 +829,7 @@ src/app/components/admin/settings/settings.component.html 98 - Document editor + 문서 편집기 Use PDF viewer provided by the browser @@ -675,7 +837,7 @@ src/app/components/admin/settings/settings.component.html 102 - Use PDF viewer provided by the browser + 브라우저에서 제공하는 PDF 뷰어 사용 This is usually faster for displaying large PDF documents, but it might not work on some browsers. @@ -683,7 +845,7 @@ src/app/components/admin/settings/settings.component.html 102 - This is usually faster for displaying large PDF documents, but it might not work on some browsers. + 이 설정은 대용량의 PDF를 표시할 때 빠르지만 어떤 브라우저에서는 작동하지 않을 수 있습니다. Sidebar @@ -691,7 +853,7 @@ src/app/components/admin/settings/settings.component.html 109 - Sidebar + 사이드바 Use 'slim' sidebar (icons only) @@ -699,7 +861,7 @@ src/app/components/admin/settings/settings.component.html 113 - Use 'slim' sidebar (icons only) + 슬림한 사이드바 사용 (아이콘만 보기) Dark mode @@ -707,7 +869,7 @@ src/app/components/admin/settings/settings.component.html 120 - Dark mode + 다크모드 Use system settings @@ -715,7 +877,7 @@ src/app/components/admin/settings/settings.component.html 123 - Use system settings + 시스템 설정 사용 Enable dark mode @@ -723,7 +885,7 @@ src/app/components/admin/settings/settings.component.html 124 - Enable dark mode + 다크모드 활성화 Invert thumbnails in dark mode @@ -739,7 +901,7 @@ src/app/components/admin/settings/settings.component.html 131 - Theme Color + 테마 색상 Reset @@ -747,7 +909,7 @@ src/app/components/admin/settings/settings.component.html 140 - Reset + 초기화 Update checking @@ -755,7 +917,7 @@ src/app/components/admin/settings/settings.component.html 145 - Update checking + 업데이트 확인중 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. @@ -779,7 +941,7 @@ src/app/components/admin/settings/settings.component.html 156 - Enable update checking + 자동으로 업데이트 확인 Bulk editing @@ -827,7 +989,7 @@ src/app/services/rest/document.service.ts 25 - Notes + 메모 Enable notes @@ -835,7 +997,7 @@ src/app/components/admin/settings/settings.component.html 173 - Enable notes + 메모 활성화 Permissions @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -891,7 +1053,7 @@ src/app/components/manage/management-list/management-list.component.html 10 - Permissions + 권한 Default Permissions @@ -899,7 +1061,7 @@ src/app/components/admin/settings/settings.component.html 184 - Default Permissions + 기본 권한 Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -935,7 +1097,7 @@ src/app/components/admin/settings/settings.component.html 204 - Default View Permissions + 기본 열람 권한 Users: @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -963,7 +1125,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 57 - Users: + 사용자: Groups: @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -991,7 +1153,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 65 - Groups: + 그룹: Default Edit Permissions @@ -999,7 +1161,7 @@ src/app/components/admin/settings/settings.component.html 231 - Default Edit Permissions + 기본 편집 권한 Edit permissions also grant viewing permissions @@ -1008,14 +1170,14 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 71 - Edit permissions also grant viewing permissions + 편집 권한은 열람 권한과 동시에 부여됩니다 Notifications @@ -1023,7 +1185,7 @@ src/app/components/admin/settings/settings.component.html 263 - Notifications + 알림 Document processing @@ -1031,7 +1193,7 @@ src/app/components/admin/settings/settings.component.html 266 - Document processing + 문서 처리중 Show notifications when new documents are detected @@ -1103,7 +1265,7 @@ src/app/components/document-list/document-list.component.html 66 - Views + 조회수 Name @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,7 +1369,11 @@ src/app/components/manage/management-list/management-list.component.html 41 - Name + + src/app/components/manage/workflows/workflows.component.html + 14 + + 이름  Appears on @@ -1231,7 +1393,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 10 - Show on dashboard + 대시보드에서 보기 Show in sidebar @@ -1243,7 +1405,7 @@ src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html 9 - Show in sidebar + 사이드바에서 보기 Actions @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,7 +1465,11 @@ src/app/components/manage/management-list/management-list.component.html 47 - Actions + + src/app/components/manage/workflows/workflows.component.html + 18 + + 작업 Delete @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,7 +1561,11 @@ src/app/components/manage/management-list/management-list.component.ts 205 - Delete + + src/app/components/manage/workflows/workflows.component.html + 39 + + 삭제 No saved views defined. @@ -1401,73 +1575,13 @@ No saved views defined. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Save - Use system language src/app/components/admin/settings/settings.component.ts 51 - Use system language + 시스템 언어 사용 Use date format of display language @@ -1475,7 +1589,7 @@ src/app/components/admin/settings/settings.component.ts 54 - Use date format of display language + 표시 중인 언어의 날짜 포맷 사용 Error retrieving users @@ -1531,7 +1645,7 @@ src/app/components/admin/settings/settings.component.ts 503 - Reload now + 지금 새로 고침 An error occurred while saving settings. @@ -1543,7 +1657,7 @@ src/app/components/app-frame/app-frame.component.ts 117 - An error occurred while saving settings. + 설정을 저장하는 중 오류가 발생하였습니다. Error while storing settings on server. @@ -1551,7 +1665,7 @@ src/app/components/admin/settings/settings.component.ts 547 - Error while storing settings on server. + 서버에 설정을 저장하는 중 오류가 발생하였습니다. File Tasks @@ -1561,9 +1675,9 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 - File Tasks + 1 Clear selection @@ -1589,24 +1703,6 @@ Clear selection - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1629,7 +1725,7 @@ src/app/services/rest/document.service.ts 22 - Created + 생성일 Results @@ -1637,7 +1733,7 @@ src/app/components/admin/tasks/tasks.component.html 38 - Results + 결과 Info @@ -1645,7 +1741,7 @@ src/app/components/admin/tasks/tasks.component.html 40 - Info + 정보 click for full output @@ -1673,7 +1769,7 @@ src/app/components/admin/tasks/tasks.component.html 95 - Open Document + 문서 열기 {VAR_PLURAL, plural, =1 {One task} other { total tasks}} @@ -1753,7 +1849,7 @@ src/app/components/admin/tasks/tasks.component.ts 133 - queued + 대기중 started @@ -1761,7 +1857,7 @@ src/app/components/admin/tasks/tasks.component.ts 135 - started + 시작 completed @@ -1769,7 +1865,7 @@ src/app/components/admin/tasks/tasks.component.ts 137 - completed + 완료 failed @@ -1777,7 +1873,7 @@ src/app/components/admin/tasks/tasks.component.ts 139 - failed + 실패 Users & Groups @@ -1787,13 +1883,13 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 - Users & Groups + 사용자 & 그룹 Users @@ -1805,7 +1901,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 90 - Users + 사용자 Add User @@ -1813,7 +1909,7 @@ src/app/components/admin/users-groups/users-groups.component.html 11 - Add User + 사용자 추가 Username @@ -1845,7 +1941,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html 27 - Groups + 그룹 Edit @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,7 +2013,11 @@ src/app/components/manage/management-list/management-list.component.html 103 - Edit + + src/app/components/manage/workflows/workflows.component.html + 34 + + 편집 Add Group @@ -1929,7 +2025,7 @@ src/app/components/admin/users-groups/users-groups.component.html 56 - Add Group + 그룹 추가 No groups defined @@ -1937,7 +2033,7 @@ src/app/components/admin/users-groups/users-groups.component.html 93 - No groups defined + 그룹 없음 Password has been changed, you will be logged out momentarily. @@ -1949,7 +2045,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 145 - Password has been changed, you will be logged out momentarily. + 비밀번호가 변경되었습니다. 곧 로그아웃됩니다. Saved user "". @@ -1965,7 +2061,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 106 - Error saving user. + 사용자 저장 에러. Confirm delete user account @@ -1973,7 +2069,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 114 - Confirm delete user account + 사용자 계정 삭제 검토 This operation will permanently delete this user account. @@ -1981,7 +2077,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 115 - This operation will permanently delete this user account. + 이 작업은 사용자 계정을 영구적으로 삭제합니다. This operation cannot be undone. @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,7 +2113,11 @@ src/app/components/manage/mail/mail.component.ts 173 - This operation cannot be undone. + + src/app/components/manage/workflows/workflows.component.ts + 97 + + 이 작업은 되돌릴 수 없습니다. Proceed @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,7 +2149,11 @@ src/app/components/manage/mail/mail.component.ts 175 - Proceed + + src/app/components/manage/workflows/workflows.component.ts + 99 + + 진행 Deleted user @@ -2065,7 +2161,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 124 - Deleted user + 사용자 삭제됨 Error deleting user. @@ -2073,7 +2169,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 130 - Error deleting user. + 사용자 삭제 오류 Saved group "". @@ -2097,7 +2193,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 164 - Confirm delete user group + 사용자 그룹 삭제 검토 This operation will permanently delete this user group. @@ -2105,7 +2201,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 165 - This operation will permanently delete this user group. + 이 작업은 사용자 그룹을 영구적으로 삭제합니다. Deleted group @@ -2113,7 +2209,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 174 - Deleted group + 사용자 그룹 삭제됨 Error deleting group. @@ -2121,7 +2217,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 180 - Error deleting group. + 사용자 그룹 삭제 오류 Paperless-ngx @@ -2138,7 +2234,7 @@ src/app/components/app-frame/app-frame.component.html 23 - Search documents + 문서 검색 Logged in as @@ -2154,7 +2250,7 @@ src/app/components/app-frame/app-frame.component.html 53 - My Profile + 내 프로필 Logout @@ -2162,7 +2258,7 @@ src/app/components/app-frame/app-frame.component.html 64 - Logout + 로그아웃 Documentation @@ -2172,13 +2268,13 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 - Documentation + 문서 Dashboard @@ -2194,7 +2290,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Dashboard + 대시보드 Documents @@ -2234,7 +2330,7 @@ src/app/components/app-frame/app-frame.component.html 150 - Open documents + 문서 열기 Close all @@ -2246,7 +2342,7 @@ src/app/components/app-frame/app-frame.component.html 178 - Close all + 모두 닫기 Manage @@ -2254,7 +2350,7 @@ src/app/components/app-frame/app-frame.component.html 186 - Manage + 관리 Correspondents @@ -2302,7 +2398,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 34 - Tags + 태그 Document Types @@ -2318,7 +2414,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 74 - Document Types + 문서 타입 Storage Paths @@ -2334,7 +2430,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 82 - Storage Paths + 저장 경로 Custom Fields @@ -2354,23 +2450,23 @@ src/app/components/manage/custom-fields/custom-fields.component.html 1 - Custom Fields + 사용자 정의 필드 - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2382,7 +2478,7 @@ src/app/components/app-frame/app-frame.component.html 255 - Mail + 메일 Administration @@ -2390,13 +2486,13 @@ src/app/components/app-frame/app-frame.component.html 261 - Administration + 관리 File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,15 +2500,15 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 - GitHub + Github is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 is available. @@ -2420,33 +2516,33 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 - Click to view. + 클릭해서 보기. Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 - Paperless-ngx can automatically check for updates + Paperless-ngx는 자동으로 최신 업데이트를 확인할 수 있습니다. How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 - How does this work? + 어떻게 작동할까요? Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 - Update available + 업데이트 가능 Sidebar views updated @@ -2454,7 +2550,7 @@ src/app/components/app-frame/app-frame.component.ts 259 - Sidebar views updated + 사이드바 업데이트 완료 Error updating sidebar views @@ -2462,7 +2558,7 @@ src/app/components/app-frame/app-frame.component.ts 262 - Error updating sidebar views + 사이드바 업데이트 중 오류가 발생했습니다 An error occurred while saving update checking settings. @@ -2486,7 +2582,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 63 - Clear + 지우기 Cancel @@ -2502,7 +2598,7 @@ src/app/components/common/confirm-dialog/confirm-dialog.component.ts 20 - Confirmation + 최종확인 Confirm @@ -2530,7 +2626,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 439 - Confirm + 확인 Create New Field @@ -2538,7 +2634,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html 25 - Create New Field + 새 필드 만들기 Add @@ -2550,7 +2646,7 @@ src/app/components/common/permissions-select/permissions-select.component.html 7 - Add + 추가 Choose field @@ -2558,7 +2654,7 @@ src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts 52 - Choose field + 필드 선택 No unused fields found @@ -2598,7 +2694,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 23 - now + 지금 After @@ -2606,7 +2702,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 32 - After + 이후 Before @@ -2614,7 +2710,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.html 57 - Before + 이전 Last 7 days @@ -2622,7 +2718,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 42 - Last 7 days + 최근 일주일 Last month @@ -2630,7 +2726,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 47 - Last month + 지난 달 Last 3 months @@ -2638,7 +2734,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 52 - Last 3 months + 지난 3개월 Last year @@ -2646,307 +2742,7 @@ src/app/components/common/date-dropdown/date-dropdown.component.ts 57 - Last year - - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Assign document type - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assign correspondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Error - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Cancel - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template + 지난 해 Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Case insensitive + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + 취소 + Create new correspondent @@ -3030,7 +2894,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html 9 - Data type + 데이터 타입 Data type cannot be changed after a field is created @@ -3110,7 +2974,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 11 - IMAP Server + IMAP 서버 IMAP Port @@ -3118,7 +2982,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 12 - IMAP Port + IMAP 포트 IMAP Security @@ -3126,7 +2990,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 13 - IMAP Security + IMAP 보안 Password @@ -3166,7 +3030,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html 19 - Character Set + 문자셋 Test @@ -3182,7 +3046,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 11 - No encryption + 암호화 없음 SSL @@ -3206,7 +3070,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 38 - Create new mail account + 새로운 메일 계정 만들기 Edit mail account @@ -3214,7 +3078,7 @@ src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts 42 - Edit mail account + 메일 계정 수정 Successfully connected to the mail server @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Assign document type + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assign correspondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + 에러 + Only process attachments @@ -3558,7 +3462,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 145 - Create new mail rule + 새 메일 규칙 만들기 Edit mail rule @@ -3566,7 +3470,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 149 - Edit mail rule + 메일 규칙 편집 Path @@ -3578,7 +3482,7 @@ src/app/components/manage/storage-path-list/storage-path-list.component.ts 42 - Path + 경로 e.g. @@ -3630,7 +3534,7 @@ src/app/components/manage/tag-list/tag-list.component.ts 42 - Color + 색상 Inbox tag @@ -3686,7 +3590,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 28 - First name + 이름 Last name @@ -3698,7 +3602,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 29 - Last name + Active @@ -3730,7 +3634,7 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts 44 - Create new user account + 새로운 사용자 계정 만들기 Edit user account @@ -3738,7 +3642,331 @@ src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts 48 - Edit user account + 사용자 계정 수정 + + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + 정렬 순서 + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API 업로드 + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow All @@ -3762,7 +3990,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 20 - All + 모두 Any @@ -3770,7 +3998,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 19 - Any + 아무 Include @@ -3778,7 +4006,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 27 - Include + 포함 Exclude @@ -3786,7 +4014,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 29 - Exclude + 제외 Apply @@ -3794,7 +4022,7 @@ src/app/components/common/filterable-dropdown/filterable-dropdown.component.html 51 - Apply + 적용 Click again to exclude items. @@ -3829,21 +4057,25 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html 9 - Remove + 제거 Invalid date. @@ -3851,7 +4083,7 @@ src/app/components/common/input/date/date.component.html 31 - Invalid date. + 유효하지 않은 날짜. Suggestions: @@ -3867,7 +4099,7 @@ src/app/components/common/input/tags/tags.component.html 57 - Suggestions: + 제안: Filter documents with this @@ -3887,7 +4119,7 @@ src/app/components/common/input/document-link/document-link.component.ts 44 - No documents found + 문서 없음 Show password @@ -3895,7 +4127,7 @@ src/app/components/common/input/password/password.component.html 6 - Show password + 비밀번호 표시 Edit Permissions @@ -3903,7 +4135,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 9 - Edit Permissions + 권한 수정 Owner: @@ -3911,7 +4143,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 26 - Owner: + 소유자: View @@ -3927,7 +4159,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 68 - View + 보기 Add item @@ -3936,7 +4168,7 @@ 25 Used for both types, correspondents, storage paths - Add item + 항목 추가 Private @@ -3956,7 +4188,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.ts 77 - Private + 비공개 No items found @@ -3964,7 +4196,7 @@ src/app/components/common/input/select/select.component.ts 92 - No items found + 항목 없음 Add tag @@ -3972,7 +4204,7 @@ src/app/components/common/input/tags/tags.component.html 15 - Add tag + 태그 추가 Filter documents with these Tags @@ -3988,7 +4220,7 @@ src/app/components/common/input/url/url.component.html 16 - Open link + 링크 열기 Set permissions @@ -3996,7 +4228,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.ts 28 - Set permissions + 권한 설정 Edit permissions for @@ -4004,7 +4236,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.ts 33 - Edit permissions for + 권한 수정 Note that permissions set here will override any existing permissions @@ -4012,7 +4244,7 @@ src/app/components/common/permissions-dialog/permissions-dialog.component.ts 71 - Note that permissions set here will override any existing permissions + 지금 수정하는 권한이 현재 권한에 덮어씌워집니다 My documents @@ -4020,7 +4252,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 32 - My documents + 내 문서 Shared with me @@ -4028,7 +4260,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 44 - Shared with me + 공유받은 문서 Shared by me @@ -4036,7 +4268,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 56 - Shared by me + 공유한 문서 Unowned @@ -4060,7 +4292,7 @@ src/app/components/common/permissions-select/permissions-select.component.html 5 - Type + 타입 Change @@ -4068,7 +4300,7 @@ src/app/components/common/permissions-select/permissions-select.component.html 8 - Change + 변경 Inherited from group @@ -4076,7 +4308,7 @@ src/app/components/common/permissions-select/permissions-select.component.ts 61 - Inherited from group + 그룹에서 상속받음 Error loading preview @@ -4084,7 +4316,7 @@ src/app/components/common/preview-popup/preview-popup.component.html 4 - Error loading preview + 미리보기 로딩 오류 Edit Profile @@ -4092,7 +4324,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 3 - Edit Profile + 프로필 편집 Confirm Email @@ -4100,7 +4332,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 13 - Confirm Email + 이메일 확인 Confirm Password @@ -4108,7 +4340,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 23 - Confirm Password + 비밀번호 확인 API Auth Token @@ -4116,7 +4348,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 31 - API Auth Token + API 인증 토큰 Copy @@ -4132,7 +4364,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.html 32 - Copy + 복사 Regenerate auth token @@ -4140,7 +4372,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 45 - Regenerate auth token + 인증 토큰 재생성 Copied! @@ -4152,7 +4384,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.html 47 - Copied! + 복사완료! Warning: changing the token cannot be undone @@ -4160,7 +4392,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html 53 - Warning: changing the token cannot be undone + 경고: 토큰을 변경하면 되돌릴 수 없습니다 Emails must match @@ -4168,7 +4400,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 94 - Emails must match + 이메일이 일치해야 합니다 Passwords must match @@ -4176,7 +4408,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 122 - Passwords must match + 비밀번호가 일치해야 합니다 Profile updated successfully @@ -4192,7 +4424,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 154 - Error saving profile + 프로필을 저장하는 중 오류가 발생하였습니다 Error generating auth token @@ -4200,7 +4432,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts 171 - Error generating auth token + 인증 토큰을 생성하는 중 오류가 발생하였습니다 Select @@ -4216,7 +4448,7 @@ src/app/components/document-list/document-list.component.html 8 - Select + 선택 Please select an object @@ -4224,7 +4456,7 @@ src/app/components/common/select-dialog/select-dialog.component.ts 20 - Please select an object + 대상을 선택해주세요 Share Links @@ -4236,7 +4468,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 23 - Share Links + 링크 공유 No existing links @@ -4252,7 +4484,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.html 38 - Share + 공유 Share archive version @@ -4268,7 +4500,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.html 58 - Expires + 만료 Create @@ -4276,7 +4508,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.html 73 - Create + 생성 1 day @@ -4288,7 +4520,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 94 - 1 day + 1일 7 days @@ -4296,7 +4528,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 17 - 7 days + 7일 30 days @@ -4304,7 +4536,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 18 - 30 days + 30일 Never @@ -4312,7 +4544,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 19 - Never + 평생 Error retrieving links @@ -4336,7 +4568,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 123 - Error deleting link + 링크 삭제 오류 Error creating link @@ -4344,7 +4576,7 @@ src/app/components/common/share-links-dropdown/share-links-dropdown.component.ts 151 - Error creating link + 링크 생성 오류 Status @@ -4352,7 +4584,11 @@ src/app/components/common/toasts/toasts.component.html 28 - Status + + src/app/components/manage/workflows/workflows.component.html + 16 + + 상태 Copy Raw Error @@ -4404,7 +4640,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 37 - Show all + 모두 보기 Title @@ -4428,7 +4664,7 @@ src/app/services/rest/document.service.ts 20 - Title + 제목 Correspondent @@ -4464,7 +4700,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 39 - View Preview + 미리보기 Download @@ -4488,7 +4724,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 121 - Download + 다운로드 No documents @@ -4496,7 +4732,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 61 - No documents + 문서 없음 Statistics @@ -4504,7 +4740,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 1 - Statistics + 통계 Go to inbox @@ -4528,7 +4764,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 10 - Go to documents + 문서로 가기 Total documents @@ -4536,7 +4772,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 11 - Total documents + 총 문서 수 Total characters @@ -4544,7 +4780,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 15 - Total characters + 총 문자 수 Other @@ -4552,7 +4788,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts 65 - Other + 기타 Upload new documents @@ -4560,7 +4796,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 1 - Upload new documents + 새 문서 업로드 Drop documents anywhere or @@ -4568,7 +4804,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 4 - Drop documents anywhere or + 업로드할 파일을 페이지에 끌어다 놓으세요 Browse files @@ -4576,7 +4812,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html 5 - Browse files + 파일 업로드 Dismiss completed @@ -4610,7 +4846,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 47 - Failed: + 실패: Added: @@ -4618,7 +4854,7 @@ src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts 50 - Added: + 성공: , @@ -4639,7 +4875,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 2 - Paperless-ngx is running! + Papeless-ngx가 작동중입니다! 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. @@ -4671,7 +4907,7 @@ src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html 8 - Start the tour + 둘러보기 Searching document with asn @@ -4691,7 +4927,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 15 - Page + 페이지 of @@ -4723,7 +4959,7 @@ src/app/components/document-detail/document-detail.component.html 38 - Download original + 원본 다운로드 Redo OCR @@ -4735,7 +4971,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 89 - Redo OCR + OCR 재수행 More like this @@ -4759,7 +4995,7 @@ src/app/guards/dirty-saved-view.guard.ts 37 - Close + 닫기 Previous @@ -4815,7 +5051,7 @@ src/app/services/rest/document.service.ts 21 - Document type + 문서 타입 Storage path @@ -4835,7 +5071,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 59 - Storage path + 저장 경로 Default @@ -4843,33 +5079,33 @@ src/app/components/document-detail/document-detail.component.html 120 - Default + 기본값 Content src/app/components/document-detail/document-detail.component.html - 161 + 206 - Content + 내용 Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts 17 - Metadata + 메타데이터 Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Date modified @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Date added @@ -4885,87 +5121,87 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 - Media filename + 미디어 파일명 Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 - Original filename + 원본 파일명 Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 - Original MD5 checksum + 원본 MD5 체크섬 Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 - Original file size + 원본 파일 사이즈 Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 - Original mime type + 원본 MIME 타입 Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 - Archive MD5 checksum + MD5 체크섬 기록 Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 - Archive file size + 파일 사이즈 기록 Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 - Original document metadata + 원본 문서 메타데이터 Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 - Archived document metadata + 문서 메타데이터 기록됨 Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 - Preview + 미리보기 Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,37 +5209,29 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 - Enter Password + 비밀번호 입력 Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 - Save & next + 저장 후 다음 Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 - Save & close - - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Discard + 저장 후 닫기 An error occurred loading content: @@ -5019,7 +5247,7 @@ src/app/components/document-detail/document-detail.component.ts 424 - Error retrieving metadata + 메타데이터를 가져오는데 실패하였습니다. Error retrieving suggestions. @@ -5027,7 +5255,7 @@ src/app/components/document-detail/document-detail.component.ts 445 - Error retrieving suggestions. + 추천을 가져오는데 실패하였습니다. Document saved successfully. @@ -5039,7 +5267,7 @@ src/app/components/document-detail/document-detail.component.ts 572 - Document saved successfully. + 문서를 성공적으로 저장하였습니다. Error saving document @@ -5051,7 +5279,7 @@ src/app/components/document-detail/document-detail.component.ts 617 - Error saving document + 문서를 저장하는데 오류가 발생하였습니다. Confirm delete @@ -5063,7 +5291,7 @@ src/app/components/manage/management-list/management-list.component.ts 201 - Confirm delete + 삭제 검토 Do you really want to delete document ""? @@ -5087,7 +5315,7 @@ src/app/components/document-detail/document-detail.component.ts 647 - Delete document + 문서 삭제 Error deleting document @@ -5095,7 +5323,7 @@ src/app/components/document-detail/document-detail.component.ts 666 - Error deleting document + 문서 삭제 오류 Redo OCR confirm @@ -5107,7 +5335,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 498 - Redo OCR confirm + OCR 재작업 확인 This operation will permanently redo OCR for this document. @@ -5115,7 +5343,7 @@ src/app/components/document-detail/document-detail.component.ts 687 - This operation will permanently redo OCR for this document. + 이 작업은 해당 문서에 되돌릴 수 없는 OCR재작업을 수행합니다. 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. @@ -5123,7 +5351,7 @@ src/app/components/document-detail/document-detail.component.ts 698 - 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. + OCR 작업은 백그라운드에서 진행됩니다. 작업이 완료된 후 문서를 닫고 다시 열거나 새로고침을 하면 새로운 OCR 작업결과를 볼 수 있습니다. Error executing operation @@ -5131,7 +5359,7 @@ src/app/components/document-detail/document-detail.component.ts 709 - Error executing operation + 작업 수행중 오류가 발생하였습니다. Page Fit @@ -5139,7 +5367,7 @@ src/app/components/document-detail/document-detail.component.ts 778 - Page Fit + 페이지 맞춤 Select: @@ -5147,7 +5375,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 10 - Select: + 선택: Edit: @@ -5155,7 +5383,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 25 - Edit: + 편집: Filter tags @@ -5211,7 +5439,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 112 - Include: + 포함: Archived files @@ -5219,7 +5447,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 116,118 - Archived files + 기록된 파일 Original files @@ -5227,7 +5455,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 122,124 - Original files + 원본 파일 Use formatted filename @@ -5401,7 +5629,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 459 - Delete confirm + 삭제 확인 This operation will permanently delete selected document(s). @@ -5417,7 +5645,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 463 - Delete document(s) + 문서 삭제 This operation will permanently redo OCR for selected document(s). @@ -5457,7 +5685,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 83 - View notes + 노트 보기 Notes @@ -5789,7 +6017,7 @@ src/app/services/rest/document.service.ts 23 - Added + 추가됨 Edit document @@ -5797,7 +6025,7 @@ src/app/components/document-list/document-list.component.html 236 - Edit document + 문서 수정 View "" saved successfully. @@ -5821,7 +6049,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 112 - Title & content + 제목 & 자료 Custom fields @@ -5829,7 +6057,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 117 - Custom fields + 사용자 정의 필드 Advanced search @@ -5837,7 +6065,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 121 - Advanced search + 고급 검색 More like @@ -5853,7 +6081,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 133 - equals + 일치 is empty @@ -6083,86 +6311,6 @@ Initiating upload... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6209,7 +6357,7 @@ src/app/components/manage/custom-fields/custom-fields.component.html 15 - Data Type + 데이터 타입 No fields defined. @@ -6281,7 +6429,7 @@ src/app/components/manage/mail/mail.component.html 1 - Mail Settings + 메일 설정 Mail accounts @@ -6289,7 +6437,7 @@ src/app/components/manage/mail/mail.component.html 6 - Mail accounts + 메일 계정 Add Account @@ -6297,7 +6445,7 @@ src/app/components/manage/mail/mail.component.html 11 - Add Account + 계정 추가 Server @@ -6305,7 +6453,7 @@ src/app/components/manage/mail/mail.component.html 18 - Server + 서버 No mail accounts defined. @@ -6549,7 +6697,7 @@ src/app/components/manage/management-list/management-list.component.html 43 - Document count + 문서 수 Filter Documents @@ -6669,7 +6817,7 @@ src/app/components/manage/management-list/management-list.component.ts 293 - Permissions updated successfully + 권한을 성공적으로 업데이트하였습니다 storage path @@ -6719,13 +6867,85 @@ Do you really want to delete the tag ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found src/app/components/not-found/not-found.component.html 6 - Not Found + 없음 Go to Dashboard @@ -6733,7 +6953,7 @@ src/app/components/not-found/not-found.component.html 12 - Go to Dashboard + 대시보드로 가기 Boolean @@ -6789,7 +7009,7 @@ src/app/data/custom-field.ts 41 - Url + URL Document Link @@ -6797,7 +7017,7 @@ src/app/data/custom-field.ts 45 - Document Link + 문서 링크 Auto: Learn matching automatically @@ -6805,7 +7025,7 @@ src/app/data/matching-model.ts 16 - Auto: Learn matching automatically + 자동: 자동으로 매칭을 학습합니다 Any word @@ -6813,7 +7033,7 @@ src/app/data/matching-model.ts 20 - Any word + 아무 단어 Any: Document contains any of these words (space separated) @@ -6821,7 +7041,7 @@ src/app/data/matching-model.ts 21 - Any: Document contains any of these words (space separated) + 아무: 문서에 해당 단어들 중 하나라도 포함된 경우 (띄어쓰기로 구분) All words @@ -6837,7 +7057,7 @@ src/app/data/matching-model.ts 26 - All: Document contains all of these words (space separated) + 모든: 문서에 해당 단어 모두가 포함된 경우 (띄어쓰기로 구분) Exact match @@ -6845,7 +7065,7 @@ src/app/data/matching-model.ts 30 - 정확히 일치 + 완전 일치 Exact: Document contains this string @@ -6853,7 +7073,7 @@ src/app/data/matching-model.ts 31 - Exact: Document contains this string + 완전: 문서에 해당 문자열이 포함된 경우 Regular expression @@ -6869,7 +7089,7 @@ src/app/data/matching-model.ts 36 - Regular expression: Document matches this regular expression + 정규 표현식: 문서에 해당 정규 표현식과 일치하는 경우 Fuzzy word @@ -6877,7 +7097,7 @@ src/app/data/matching-model.ts 40 - Fuzzy word + 유사 단어 Fuzzy: Document contains a word similar to this word @@ -6885,7 +7105,7 @@ src/app/data/matching-model.ts 41 - Fuzzy: Document contains a word similar to this word + 유사: 문서에 해당 단어와 비슷한 단어가 있는 경우 None: Disable matching @@ -6893,7 +7113,119 @@ src/app/data/matching-model.ts 46 - None: Disable matching + 없음: 매칭 비활성화 + + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments Warning: You have unsaved changes to your document(s). @@ -6901,7 +7233,7 @@ src/app/guards/dirty-doc.guard.ts 16 - Warning: You have unsaved changes to your document(s). + 경고: 문서에 저장되지 않은 변경사항이 있습니다. Unsaved Changes @@ -6921,7 +7253,7 @@ src/app/services/open-documents.service.ts 131 - Unsaved Changes + 저장되지 않은 변경 사항 You have unsaved changes. @@ -6933,7 +7265,7 @@ src/app/services/open-documents.service.ts 132 - You have unsaved changes. + 변경 내용이 저장되지 않았습니다. Are you sure you want to leave? @@ -6941,7 +7273,7 @@ src/app/guards/dirty-form.guard.ts 19 - Are you sure you want to leave? + 작업을 중단하시겠습니까? Leave page @@ -6949,7 +7281,7 @@ src/app/guards/dirty-form.guard.ts 21 - Leave page + 페이지 떠나기 You have unsaved changes to the saved view @@ -6973,7 +7305,7 @@ src/app/guards/dirty-saved-view.guard.ts 39 - Save and close + 저장하고 닫기 You don't have permissions to do that @@ -6981,7 +7313,7 @@ src/app/guards/permissions.guard.ts 34 - You don't have permissions to do that + 수행할 권한이 없습니다 (no title) @@ -6997,7 +7329,7 @@ src/app/pipes/yes-no.pipe.ts 8 - Yes + No @@ -7005,7 +7337,7 @@ src/app/pipes/yes-no.pipe.ts 8 - No + 아니오 Document already exists. @@ -7073,7 +7405,7 @@ src/app/services/consumer-status.service.ts 24 - Received new file. + 새로운 파일 수신됨. File type not supported. @@ -7081,7 +7413,7 @@ src/app/services/consumer-status.service.ts 25 - File type not supported. + 지원하지 않는 파일 확장자입니다. Processing document... @@ -7089,7 +7421,7 @@ src/app/services/consumer-status.service.ts 26 - Processing document... + 문서 처리 중... Generating thumbnail... @@ -7097,7 +7429,7 @@ src/app/services/consumer-status.service.ts 27 - Generating thumbnail... + 썸네일 생성 중... Retrieving date from document... @@ -7105,7 +7437,7 @@ src/app/services/consumer-status.service.ts 28 - Retrieving date from document... + 문서에서 날짜 가져오는 중... Saving document... @@ -7113,7 +7445,7 @@ src/app/services/consumer-status.service.ts 29 - Saving document... + 문서 저장 중... Finished. @@ -7121,7 +7453,7 @@ src/app/services/consumer-status.service.ts 30 - Finished. + 완료. You have unsaved changes to the document @@ -7137,7 +7469,7 @@ src/app/services/open-documents.service.ts 110 - Are you sure you want to close this document? + 정말 문서를 닫으시겠습니까? Close document @@ -7145,7 +7477,7 @@ src/app/services/open-documents.service.ts 112 - Close document + 문서 닫기 Are you sure you want to close all documents? @@ -7153,7 +7485,7 @@ src/app/services/open-documents.service.ts 133 - Are you sure you want to close all documents? + 정말 모든 문서를 닫으시겠습니까? Close documents @@ -7161,7 +7493,7 @@ src/app/services/open-documents.service.ts 135 - Close documents + 문서 닫기 Modified @@ -7169,7 +7501,7 @@ src/app/services/rest/document.service.ts 24 - Modified + 수정됨 Search score @@ -7218,7 +7550,7 @@ src/app/services/settings.service.ts 64 - Bulgarian + 불가리어 Catalan @@ -7298,7 +7630,7 @@ src/app/services/settings.service.ts 124 - Hungarian + 헝가리어 Italian @@ -7322,7 +7654,7 @@ src/app/services/settings.service.ts 142 - Dutch + 네덜란드어 Norwegian @@ -7338,7 +7670,7 @@ src/app/services/settings.service.ts 154 - Polish + 폴란드어 Portuguese (Brazil) @@ -7346,7 +7678,7 @@ src/app/services/settings.service.ts 160 - Portuguese (Brazil) + 포르투갈어 (브라질) Portuguese @@ -7354,7 +7686,7 @@ src/app/services/settings.service.ts 166 - Portuguese + 포르투갈어 Romanian @@ -7362,7 +7694,7 @@ src/app/services/settings.service.ts 172 - Romanian + 루마니아어 Russian @@ -7370,7 +7702,7 @@ src/app/services/settings.service.ts 178 - Russian + 러시아어 Slovak @@ -7378,7 +7710,7 @@ src/app/services/settings.service.ts 184 - Slovak + 슬로바키아어 Slovenian @@ -7386,7 +7718,7 @@ src/app/services/settings.service.ts 190 - Slovenian + 슬로베니아어 Serbian @@ -7394,7 +7726,7 @@ src/app/services/settings.service.ts 196 - Serbian + 세르비아어 Swedish @@ -7402,7 +7734,7 @@ src/app/services/settings.service.ts 202 - Swedish + 스웨덴어 Turkish @@ -7410,7 +7742,7 @@ src/app/services/settings.service.ts 208 - Turkish + 튀르키예어 Ukrainian @@ -7418,7 +7750,7 @@ src/app/services/settings.service.ts 214 - Ukrainian + 우크라이나어 Chinese Simplified @@ -7426,7 +7758,7 @@ src/app/services/settings.service.ts 220 - Chinese Simplified + 중국어 간체 ISO 8601 @@ -7458,7 +7790,7 @@ src/app/services/settings.service.ts 539 - You can restart the tour from the settings page. + 나중에 설정 페이지에서 다시 둘러보기를 할 수 있습니다. Connecting... @@ -7466,7 +7798,7 @@ src/app/services/upload-documents.service.ts 42 - Connecting... + 연결중... Uploading... @@ -7474,7 +7806,7 @@ src/app/services/upload-documents.service.ts 54 - Uploading... + 업로드 중... Upload complete, waiting... @@ -7482,7 +7814,7 @@ src/app/services/upload-documents.service.ts 57 - Upload complete, waiting... + 업로드 완료, 잠시만 기다려주세요... HTTP error: @@ -7490,7 +7822,7 @@ src/app/services/upload-documents.service.ts 70 - HTTP error: + HTTP 에러: diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index fb8393b68..2cc319603 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Verwerfen + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Späicheren + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Protokoller @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Numm @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Aktiounen @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Läschen @@ -1401,66 +1575,6 @@ Keng gespäichert Usiicht definéiert. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Späicheren - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Datei Jobs @@ -1589,24 +1703,6 @@ Clear selection - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Editéieren @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Dës Operatioun kann net réckgängeg gemaach ginn. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Weider @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentatioun @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 ass disponibel. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Klicke fir unzeweisen. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx can automatically check for updates @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 How does this work? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Update disponibel @@ -2648,306 +2744,6 @@ Lescht Joer - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Assign document type - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assign correspondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Feeler - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Ofbriechen - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Grouss-/Klengschreiwung ignoréieren + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Ofbriechen + Create new correspondent @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Assign document type + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assign correspondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Feeler + Only process attachments @@ -3740,6 +3644,330 @@ Edit user account + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Inhalt @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Verännert um @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Dobäigesat um @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Dateinumm vum Mediefichier @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Original Dateinumm @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 MD5-Préifzomm vum Original @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Dateigréisst vum Original @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Urspréngleche MIME-Typ @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 MD5-Préifzomm vum Archiv @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Archiv-Dateigréisst @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metadate vum Original-Dokument @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metadate vum Archiv-Dokument @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Preview @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Passwuert aginn @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Späicheren a weider @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Verwerfen - An error occurred loading content: @@ -6083,86 +6311,6 @@ Upload fänkt un... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Soll d'Etikett "" wierklech geläscht ginn? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index e691cde0c..3638cd2ae 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Discard + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Save + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Logs @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Name @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Actions @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Delete @@ -1401,66 +1575,6 @@ No saved views defined. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Save - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 File Tasks @@ -1589,24 +1703,6 @@ Clear selection - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Edit @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + This operation cannot be undone. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Proceed @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Documentation @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 is available. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Click to view. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx can automatically check for updates @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 How does this work? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Update available @@ -2648,306 +2744,6 @@ Last year - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Assign document type - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assign correspondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Error - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Cancel - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Case insensitive + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Cancel + Create new correspondent @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Assign document type + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assign correspondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Error + Only process attachments @@ -3740,6 +3644,330 @@ Edit user account + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Content @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Date modified @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Date added @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Media filename @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Original filename @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Original MD5 checksum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Original file size @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Original mime type @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Archive MD5 checksum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Archive file size @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Original document metadata @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Archived document metadata @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Preview @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Enter Password @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Save & next @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Discard - An error occurred loading content: @@ -6083,86 +6311,6 @@ Initiating upload... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Do you really want to delete the tag ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index ff6367b1e..ac2cceba5 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -393,13 +393,13 @@ E-mailaccounts en regels voor automatisch importeren van documenten beheren. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumptie sjablonen geven je meer controle over de inname van documenten. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Ten slotte, namens elke bijdrager aan dit community ondersteund project, bedankt voor het gebruik van Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Negeren + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Opslaan + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Logbestanden @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Naam @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Acties @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Verwijderen @@ -1401,66 +1575,6 @@ Geen opgeslagen weergaven gedefinieerd. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Opslaan - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Bestandstaken @@ -1589,24 +1703,6 @@ Selectie wissen - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1689,7 +1785,7 @@ src/app/components/admin/tasks/tasks.component.html 123,125 - Failed + Mislukt Complete @@ -1697,7 +1793,7 @@ src/app/components/admin/tasks/tasks.component.html 131,133 - Complete + Voltooid Started @@ -1705,7 +1801,7 @@ src/app/components/admin/tasks/tasks.component.html 139,141 - Started + Gestart Queued @@ -1713,7 +1809,7 @@ src/app/components/admin/tasks/tasks.component.html 147,149 - Queued + In wachtrij Dismiss selected @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Gebruikers & groepen @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Bewerk @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Deze actie kan niet ongedaan worden gemaakt. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Doorgaan @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Handleiding @@ -2356,21 +2452,21 @@ Aangepaste velden - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumptie sjablonen - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Sjablonen + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,15 +2492,15 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 - File Tasks + Bestandstaken GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 is beschikbaar. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Klik om te bekijken. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx kan automatisch controleren op updates @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Hoe werkt dit? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Update beschikbaar @@ -2648,306 +2744,6 @@ Afgelopen jaar - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sorteervolgorde - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Verwerk documenten die overeenkomen met alle filters die hieronder zijn aangegeven. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Bronnen filteren - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Bestandsnaam filteren - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Toepassen op documenten die overeenkomen met deze bestandsnaam. Wildcards als *.pdf of *factuur* zijn toegestaan. Niet hoofdlettergevoelig. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter op opslaglocatie - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Toepassen op documenten die overeenkomen met dit pad. Wildcards met * zijn toegestaan. Niet hoofdlettergevoelig.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter op e-mailregel - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Toepassen op documenten die via deze e-mailregel zijn toegevoegd. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Toewijzingen - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Titel toewijzen - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Kan enkele placeholders bevatten, zie <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentatie</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Labels toewijzen - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Wijs documenttype toe - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Correspondent toewijzen - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Opslaglocatie toewijzen - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Aangepaste velden toewijzen - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Eigenaar toewijzen - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Weergaverechten toewijzen - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Bewerkingsrechten toewijzen - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Fout - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Annuleren - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Inname locatie - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - E-mail ophalen - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Nieuw consumptiesjabloon aanmaken - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Consumptiesjabloon bewerken - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Niet hoofdlettergevoelig + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Annuleren + Create new correspondent @@ -3412,6 +3276,18 @@ Wijs titel toe van + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Wijs documenttype toe + Assign correspondent from @@ -3420,6 +3296,18 @@ Wijs correspondent toe van + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Correspondent toewijzen + Assign owner from rule @@ -3428,6 +3316,22 @@ Eigenaar van regel toewijzen + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Fout + Only process attachments @@ -3740,6 +3644,330 @@ Bewerk gebruikersaccount + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sorteervolgorde + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Titel toewijzen + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Labels toewijzen + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Opslaglocatie toewijzen + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Aangepaste velden toewijzen + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Eigenaar toewijzen + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Weergaverechten toewijzen + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Bewerkingsrechten toewijzen + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Bestandsnaam filteren + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Toepassen op documenten die overeenkomen met deze bestandsnaam. Wildcards als *.pdf of *factuur* zijn toegestaan. Niet hoofdlettergevoelig. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Bronnen filteren + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter op opslaglocatie + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Toepassen op documenten die overeenkomen met dit pad. Wildcards met * zijn toegestaan. Niet hoofdlettergevoelig.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter op e-mailregel + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Toepassen op documenten die via deze e-mailregel zijn toegevoegd. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Inname locatie + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + E-mail ophalen + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4036,7 +4268,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 56 - Shared by me + Gedeeld door mij Unowned @@ -4084,7 +4316,7 @@ src/app/components/common/preview-popup/preview-popup.component.html 4 - Error loading preview + Fout bij laden voorbeeld Edit Profile @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Inhoud @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Wijzigingsdatum @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Datum toegevoegd @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Media bestandsnaam @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Originele bestandsnaam @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Originele MD5 checksum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Originele bestandsgrootte @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Oorspronkelijke mime-type @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Archief MD5 checksum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Archief bestandsgrootte @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Originele document metadata @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Gearchiveerde document metadata @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Voorbeeld @@ -4965,19 +5201,19 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 - Notes + Notities Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Wachtwoord invoeren @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Opslaan & volgende @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Opslaan & sluiten - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Negeren - An error occurred loading content: @@ -6083,86 +6311,6 @@ Upload starten... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumptie sjablonen - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Sjabloon toevoegen - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Documentbron - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Geen sjablonen aangemaakt. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Sjabloon "" opgeslagen. - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Fout bij opslaan sjabloon. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Bevestig sjabloon verwijderen - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Deze bewerking zal dit sjabloon permanent verwijderen. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Sjabloon verwijderd - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Fout bij verwijderen sjabloon. - correspondent @@ -6719,6 +6867,78 @@ Wil je dit label echt verwijderen ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Geen: overeenkomsten uitschakelen + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index d4196ab54..1b75a6f48 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -393,13 +393,13 @@ Administrer e-postkontoer og -regler for automatisk import av dokumenter. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Konsummaler gir deg mer finkornet kontroll over dokumentinntaksprosessen. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Og sist, på vegne av hver bidragsyter til dette fellesskapsstøttede prosjektet. Takk for at du bruker Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Forkast + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Lagre + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Logger @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Navn @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Handlinger @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Slett @@ -1401,66 +1575,6 @@ Ingen lagrede visninger definert. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Lagre - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Fil oppgaver @@ -1589,24 +1703,6 @@ Nullstill valg - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Brukere & Grupper @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Rediger @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Denne handlingen kan ikke angres. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Fortsett @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentasjon @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 er tilgjengelig. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Klikk for å se. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx kan automatisk sjekke etter oppdateringer @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Hvordan fungerer dette? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Oppdatering er tilgjengelig @@ -2648,306 +2744,6 @@ Siste år - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Tilordne dokumenttype - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Tildel korrespondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Feil - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Avbryt - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Epost-henting - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Skill mellom store og små bokstaver + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Avbryt + Create new correspondent @@ -3412,6 +3276,18 @@ Tilordne tittel fra + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Tilordne dokumenttype + Assign correspondent from @@ -3420,6 +3296,18 @@ Tildel korrespondent fra + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Tildel korrespondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Feil + Only process attachments @@ -3740,6 +3644,330 @@ Rediger brukerkonto + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Epost-henting + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Innhold @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Dato endret @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Dato lagt til @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Media filnavn @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Opprinnelig filnavn @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Opprinnelig MD5-sjekksum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Opprinnelig filstørrelse @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Opprinnelig mimetype @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Arkiver MD5-sjekksum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Arkivstørrelse @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Opprinnelig dokumentmetadata @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Arkivert dokumentmetadata @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Forhåndsvis @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Skriv inn passord @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Lagre & Avslutt @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Lagre & Lukk - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Forkast - An error occurred loading content: @@ -6083,86 +6311,6 @@ Starter opplasting... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Ønsker du virkelig å slette taggen ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Ingen: Deaktiver matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 79726b725..7aa09f16d 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -343,7 +343,7 @@ src/app/app.component.ts 134 - Panel może być używany do wyświetlania zapisanych widoków, takich jak 'Skrzynka odbiorcza'. Te ustawienia znajdują się w Ustawieniach > Zapisane widoki po ich utworzeniu. + Pulpit może być używany do wyświetlania zapisanych widoków, takich jak 'Skrzynka odbiorcza'. Ta konfiguracja znajdują się w Ustawienia > Zapisane widoki. 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. @@ -383,7 +383,7 @@ src/app/app.component.ts 164 - 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. + Tagi, korespondenci, typy dokumentów i ścieżki zapisu mogą być zarządzane za pomocą tych stron. Można je również tworzyć z poziomu widoku edycji dokumentu. Manage e-mail accounts and rules for automatically importing documents. @@ -393,13 +393,13 @@ Zarządzaj kontami e-mail i regułami automatycznego importowania dokumentów. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Szablony pobierania umożliwiają precyzyjną kontrolę nad procesem wczytywania dokumentów. + Procesy umożliwiają większą kontrolę nad przepływem dokumentów. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -407,7 +407,7 @@ src/app/app.component.ts 188 - Zadania pliku pokazują dokumenty, które zostały przetworzone, oczekują na przetwarzanie lub których przetwarzanie mogło sie nie powieść. + Operacje na plikach pokazują dokumenty, które zostały przetworzone, oczekują na przetwarzanie lub których przetwarzanie mogło się nie powieść. Check out the settings for various tweaks to the web app and toggle settings for saved views. @@ -441,6 +441,168 @@ Na koniec, w imieniu każdego współtwórcy tego projektu wspieranego przez społeczność, dziękujemy za używanie Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Konfiguracja + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Przeczytaj dokumentację o tej konfiguracji + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Włącz + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Zaniechaj + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Zapisz + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Błąd podczas pobierania konfiguracji + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Nieprawidłowy JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Konfiguracja zaktualizowana + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + Wystąpił błąd podczas aktualizacji konfiguracji + Logs @@ -449,13 +611,13 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 - Logi + Dziennik Auto refresh @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -699,7 +861,7 @@ src/app/components/admin/settings/settings.component.html 113 - Użyj wąskiegio paska bocznego (tylko dla ikon) + Użyj wąskiego paska bocznego (tylko ikony) Dark mode @@ -763,7 +925,7 @@ src/app/components/admin/settings/settings.component.html 149,152 - Sprawdzanie aktualizacji działa poprzez wysyłanie pingów do publicznego GitHub API najnowszej wersji w celu określenia, czy jest dostępna aktualizacja. Aktualizacja aplikacji musi być nadal wykonana ręcznie. + Sprawdzanie aktualizacji działa poprzez wysyłanie pingów do publicznego GitHub API w celu określenia, czy jest dostępna nowa wersja. Aktualizacja aplikacji musi być nadal wykonana ręcznie. No tracking data is collected by the app in any way. @@ -787,7 +949,7 @@ src/app/components/admin/settings/settings.component.html 160 - Masowa edycja + Edycja grupowa Show confirmation dialogs @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -907,7 +1069,7 @@ src/app/components/admin/settings/settings.component.html 188,190 - Ustawienia dotyczą tego konta użytkownika dla obiektów (tagi, reguły pocztowe itp.) utworzonych za pomocą interfejsu internetowego + Konfiguracja dotyczy uprawnień wskazanego konta użytkownika do obiektów (tagi, reguły pocztowe itp.) utworzonych za pomocą interfejsu webowego Default Owner @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1091,7 +1253,7 @@ src/app/components/admin/settings/settings.component.html 287 - Pokaż ostrzeżenie podczas zamykania zapisanych widoków z niezapisanymi zmianami + Pokaż ostrzeżenie podczas zamykania utworzonych widoków z niezapisanymi zmianami Views @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Nazwa @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Akcje @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Usuń @@ -1401,66 +1575,6 @@ Nie zdefiniowano zapisanych widoków. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Zapisz - Use system language @@ -1561,9 +1675,9 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 - Przetwarzanie plików + Operacje na plikach Clear selection @@ -1589,24 +1703,6 @@ Wyczyść zaznaczenie - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1689,7 +1785,7 @@ src/app/components/admin/tasks/tasks.component.html 123,125 - Failed + Niepowodzenie Complete @@ -1697,7 +1793,7 @@ src/app/components/admin/tasks/tasks.component.html 131,133 - Complete + Zakończono Started @@ -1705,7 +1801,7 @@ src/app/components/admin/tasks/tasks.component.html 139,141 - Started + Rozpoczęto Queued @@ -1713,7 +1809,7 @@ src/app/components/admin/tasks/tasks.component.html 147,149 - Queued + Zakolejkowane Dismiss selected @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Użytkownicy i Grupy @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Edytuj @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Ta czynność nie może być cofnięta. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Kontynuuj @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentacja @@ -2194,7 +2290,7 @@ src/app/components/dashboard/dashboard.component.html 1 - Kokpit + Pulpit Documents @@ -2318,7 +2414,7 @@ src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html 74 - Typy dokumentu + Typy dokumentów Storage Paths @@ -2356,21 +2452,21 @@ Pola dodatkowe - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Szablony pobierania - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Szablony + + src/app/components/manage/workflows/workflows.component.html + 1 + + Procesy Mail @@ -2396,15 +2492,15 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 - File Tasks + Zadania pliku GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 jest dostępny. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Kliknij, aby zobaczyć. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx może automatycznie sprawdzać dostępność aktualizacji @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Jak to działa? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Aktualizacja jest dostępna @@ -2648,306 +2744,6 @@ Ostatni rok - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Kolejność sortowania - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filtry - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Przetwarzaj dokumenty, które pasują wszystkich filtrów określonych poniżej. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filtruj źródła - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filtruj po nazwie pliku - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Stosuj do dokumentów, które pasują do tej nazwy pliku. Znaki wieloznaczne, takie jak *.pdf lub *faktura*, są dozwolone. Bez uwzględniania wielkości liter. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filtruj ścieżkę - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Stosuj do dokumentów, które pasują do tej ścieżki. Maski takie jak *, są dozwolone. Bez uwzględniania wielkości liter.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Reguła filtrowania wiadomości e-mail - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Stosuj do dokumentów pobieranych za pomocą tej reguły mailowej. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Przydziały - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Przypisz tytuł - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Może zawierać pewne zmienne, zobacz <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>dokumentację</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Przypisz tagi - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Przypisz typ dokumentu - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Przypisz korespondenta - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Przypisz ścieżkę przechowywania - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Przypisz niestandardowe pola - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Przypisz właściciela - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Przypisz uprawnienia do przeglądania - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Przypisz uprawnienia do edycji - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Błąd - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Anuluj - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Folder pobierania - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - Przesyłanie przez API - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Pobieranie poczty - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Utwórz nowy szablon pobierania - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edytuj szablon pobierania - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + (Nieuwzględniający wielkości liter) + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Anuluj + Create new correspondent @@ -3046,7 +2910,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts 36 - Utwórz nowe niestandardowe pole + Utwórz nowe pole dodatkowe Edit custom field @@ -3054,7 +2918,7 @@ src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts 40 - Edytuj niestandardowe pole + Edytuj pole dodatkowe Create new document type @@ -3346,7 +3210,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 24 - Filtruj załączniki o nazwie pliku zawierającej + Filtruj nazwę załącznika, która zawiera Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -3362,7 +3226,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 25 - Filtruj załączniki o nazwie pliku wyłączając + Filtruj nazwę załącznika, która nie zawiera Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -3386,7 +3250,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 28 - Akcja jest wykonywana tylko wtedy, gdy dokumenty są konsumowane z maila. Maile bez załączników pozostają całkowicie nietknięte. + Akcja jest wykonywana tylko wtedy, gdy dokumenty są pobierane z maila. Maile bez załączników pozostają całkowicie nietknięte. Action parameter @@ -3410,7 +3274,19 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 33 - Przypisz tytuł nadawcy + Przypisz tytuł z + + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Przypisz typ dokumentu Assign correspondent from @@ -3420,6 +3296,18 @@ Przypisz korespondenta nadawcy + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Przypisz korespondenta + Assign owner from rule @@ -3428,6 +3316,22 @@ Przypisz właściciela z reguły + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Błąd + Only process attachments @@ -3610,7 +3514,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 37 - Utwórz nową ścieżkę przechowywania + Utwórz nową ścieżkę zapisu Edit storage path @@ -3618,7 +3522,7 @@ src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts 41 - Edytuj ścieżkę przechowywania + Edytuj ścieżkę zapisu Color @@ -3740,6 +3644,330 @@ Edytuj konto użytkownika + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Kolejność sortowania + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Włączony + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Wyzwalacze + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Wyzwalaj proces na: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Dodaj wyzwalacz + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Zastosuj akcje: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Dodaj akcję + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Typ akcji + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Przypisz tytuł + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Może zawierać różna zmienne, zobacz <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentację</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Przypisz tagi + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Przypisz ścieżkę zapisu + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Przypisz pola dodatkowe + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Przypisz właściciela + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Przypisz uprawnienia do przeglądania + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Przypisz uprawnienia do edycji + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Typ wyzwalacza + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Wyzwalacze do dokumentów, które pasują do wszystkich filtrów określonych poniżej. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filtruj po nazwie pliku + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Zastosuj do dokumentów, które pasują do tej nazwy pliku. Maski takie jak *.pdf lub *faktura* są dozwolone. Wielkość liter nie ma znaczenia. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filtruj źródła + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filtruj ścieżkę + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Zastosuj do dokumentów, które pasują do tej ścieżki. Maski takie jak * są dozwolone. Wielkość liter nie ma znaczenia.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Reguła filtrowania wiadomości e-mail + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Zastosuj do dokumentów pobieranych za pomocą tej reguły mailowej. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Algorytm dopasowania zawartości + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Wzór dopasowania zawartości + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Ma tagi + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Ma nadawcę + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Ma typ dokumentu + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Folder pobierania + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + Przesyłanie przez API + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Pobieranie poczty + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Rozpoczęto pobieranie + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Dodano dokument + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Dokument zaktualizowano + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Przypisanie + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Utwórz nowy proces + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edytuj proces + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4052,7 +4284,7 @@ src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html 100 - Ukryj nez właściciela + Ukryj bez właściciela Type @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4384,7 +4620,7 @@ src/app/components/dashboard/dashboard.component.ts 71 - Panel został zaktualizowany + Pulpit został zaktualizowany Error updating dashboard @@ -4392,7 +4628,7 @@ src/app/components/dashboard/dashboard.component.ts 74 - Błąd podczas aktualizacji panelu + Błąd aktualizacji pulpitu Show all @@ -4835,7 +5071,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 59 - Ścieżki składowania + Ścieżki zapisu Default @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Zawartość @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Data modyfikacji @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Data dodania @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Nazwa pliku @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Oryginalna nazwa pliku @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 MD5 - Suma kontrolna Oryginału @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Rozmiar oryginalnego pliku @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Typ mime oryginału @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Suma kontrolna archiwum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Rozmiar pliku archiwalnego @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metadane oryginalnego dokumentu @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metadane zarchiwizowanego dokumentu @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Podgląd @@ -4965,19 +5201,19 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 - Notes + Notatki Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Wprowadź hasło @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Zapisz & następny @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Zapisz & zamknij - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Zaniechaj - An error occurred loading content: @@ -5203,7 +5431,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 60 - Filtruj ścieżkę przechowywania + Filtruj ścieżkę zapisu Include: @@ -5377,7 +5605,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 432 - Potwierdź przypisanie ścieżki przechowywania + Potwierdź przypisanie ścieżki zapisu This operation will assign the storage path "" to selected document(s). @@ -5385,7 +5613,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 434 - Ta operacja przypisze ścieżkę przechowywania "" do wybranych dokumentów. + Ta operacja przypisze ścieżkę zapisu "" do wybranych dokumentów. This operation will remove the storage path from selected document(s). @@ -5393,7 +5621,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 436 - Ta operacja usunie ścieżkę przechowywania z wybranych dokumentów. + Ta operacja usunie ścieżkę zapisu z wybranych dokumentów. Delete confirm @@ -5489,7 +5717,7 @@ src/app/components/document-list/document-list.component.html 264 - Filtruj według ścieżki przechowywania + Filtruj według ścieżki zapisu Created: @@ -5653,7 +5881,7 @@ src/app/components/document-list/document-list.component.html 114 - Filtrowane + (odfiltrowane) Reset filters @@ -5757,7 +5985,7 @@ src/app/components/document-list/document-list.component.html 198 - Sortuj według ścieżi zapisu + Sortuj według ścieżki zapisu Sort by created date @@ -5829,7 +6057,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 117 - Pola niestandardowe + Pola dodatkowe Advanced search @@ -5925,7 +6153,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 186,188 - Ścieżka przechowywania: + Ścieżka zapisu: Without storage path @@ -5933,7 +6161,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 190 - Bez ścieżki przechowywania + Bez ścieżki zapisu Tag: @@ -6083,86 +6311,6 @@ Rozpoczęcie wysyłania... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Szablony pobierania - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Dodaj szablon - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Źródła dokumentów - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Brak zdefiniowanych szablonów. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Zapisano szablon "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Wystąpił błąd zapisywania szablonu. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Potwierdź usunięcie szablonu - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Ta operacja trwale usunie szablon. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Usunięto szablon - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Błąd usuwania szablonu. - correspondent @@ -6193,7 +6341,7 @@ src/app/components/manage/correspondent-list/correspondent-list.component.ts 67 - Czy na pewno chcesz usunąć nadawcę "? + Czy na pewno chcesz usunąć nadawcę ""? Add Field @@ -6677,7 +6825,7 @@ src/app/components/manage/storage-path-list/storage-path-list.component.ts 36 - ścieżki składowania + ścieżki zapisu storage paths @@ -6685,7 +6833,7 @@ src/app/components/manage/storage-path-list/storage-path-list.component.ts 37 - ścieżki składowania + ścieżki zapisu Do you really want to delete the storage path ""? @@ -6693,7 +6841,7 @@ src/app/components/manage/storage-path-list/storage-path-list.component.ts 52 - Czy na pewno chcesz usunąć ścieżkę do przechowywania? ""? + Czy na pewno chcesz usunąć ścieżkę zapisu ""? tag @@ -6719,6 +6867,78 @@ Czy na pewno chcesz usunąć tag "? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Dodaj proces + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Wyłączony + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + Nie zdefiniowano procesów. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Zapisano proces "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Błąd podczas zapisu procesu. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Potwierdź usunięcie procesu + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + Ta operacja trwale usunie ten proces. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Usunięto proces + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Błąd podczas usuwania procesu. + Not Found @@ -6733,7 +6953,7 @@ src/app/components/not-found/not-found.component.html 12 - Przejdź do panelu głównego + Przejdź do pulpitu Boolean @@ -6895,6 +7115,118 @@ Brak: Wyłącz dopasowanie + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + Ustawienia OCR + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Typ wyjścia + + + Language + + src/app/data/paperless-config.ts + 81 + + Język + + + Pages + + src/app/data/paperless-config.ts + 88 + + Strony + + + Mode + + src/app/data/paperless-config.ts + 95 + + Tryb + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Pomiń plik archiwum + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + DPI obrazu + + + Clean + + src/app/data/paperless-config.ts + 118 + + Wyczyść + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Prostuj + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Obracaj strony + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Próg obrotu stron + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Maksymalna liczba pikseli + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Strategia konwersji kolorów + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + Argumenty OCR + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index 7a5072045..e325ed52a 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Os modelos de consumo dão um melhor controle sobre o processo de ingestão de documentos. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Por fim, em nome de todos os colaboradores deste projeto apoiado pela comunidade, obrigado por usar o Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Descartar + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Salvar + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Logs @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Nome @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Ações @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Excluir @@ -1401,66 +1575,6 @@ Nenhuma visualização definida. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Salvar - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Tarefas de Arquivo @@ -1589,24 +1703,6 @@ Limpar seleção - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Usuários & Grupos @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Editar @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Essa operação não pode ser revertida. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Prosseguir @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Documentação @@ -2356,21 +2452,21 @@ Campos Personalizados - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Modelos de consumo - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Modelos + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 está disponível. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Clique para visualizar. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx pode verificar atualizações automaticamente @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Como isto funciona? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Atualização disponível @@ -2648,306 +2744,6 @@ Último ano - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Ordem de classificação - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filtros - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Processar documentos que correspondam a todos os filtros especificados abaixo. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filtro de fontes - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filtro de nome de arquivo - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Aplica-se a documentos que correspondem a esse nome de arquivo. Caracteres curinga como *.pdf ou *fatura* são permitidos. Sem diferenciação de maiúsculas e minúsculas. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filtro de caminho - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Aplica-se a documentos que correspondem a esse caminho. Caracteres curinga usando * são permitidos. Sem diferenciação de maiúsculas e minúsculas.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filtro de regra de e-mail - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Aplica-se a documentos consumidos por essa regra de e-mail. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Atribuições - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Atribuir título - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Pode incluir alguns espaços reservados, consulte a <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentação</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Atribuir etiquetas - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Atribuir tipo de documento - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Atribuir correspondente - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Atribuir caminho de armazenamento - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Atribuir campos personalizados - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Atribuir proprietário - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Atribuir permissões de visualização - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Atribuir permissões de edição - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Erro - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Cancelar - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Pasta de Consumo - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - Envio por API - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Busca em e-mail - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Criar novo modelo de consumo - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Editar modelo de consumo - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Não diferenciar maiúsculas de minúsculas + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Cancelar + Create new correspondent @@ -3413,6 +3277,18 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Atribuir título de + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Atribuir tipo de documento + Assign correspondent from @@ -3421,6 +3297,18 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Atribuir correspondente de + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Atribuir correspondente + Assign owner from rule @@ -3429,6 +3317,22 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Atribuir proprietário a partir da regra + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Erro + Only process attachments @@ -3741,6 +3645,330 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Editar conta de usuário + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Ordem de classificação + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Atribuir título + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Atribuir etiquetas + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Atribuir caminho de armazenamento + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Atribuir campos personalizados + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Atribuir proprietário + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Atribuir permissões de visualização + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Atribuir permissões de edição + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filtro de nome de arquivo + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Aplica-se a documentos que correspondem a esse nome de arquivo. Caracteres curinga como *.pdf ou *fatura* são permitidos. Sem diferenciação de maiúsculas e minúsculas. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filtro de fontes + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filtro de caminho + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Aplica-se a documentos que correspondem a esse caminho. Caracteres curinga usando * são permitidos. Sem diferenciação de maiúsculas e minúsculas.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filtro de regra de e-mail + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Aplica-se a documentos consumidos por essa regra de e-mail. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Pasta de Consumo + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + Envio por API + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Busca em e-mail + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3830,15 +4058,19 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4353,6 +4585,10 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4850,7 +5086,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Conteúdo @@ -4858,7 +5094,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4870,7 +5106,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Data de modificação @@ -4878,7 +5114,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Data de adição @@ -4886,7 +5122,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Nome do arquivo @@ -4894,7 +5130,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Nome do arquivo original @@ -4902,7 +5138,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Soma de verificação MD5 original @@ -4910,7 +5146,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Tamanho do arquivo original @@ -4918,7 +5154,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Tipo mime original @@ -4926,7 +5162,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Soma de verificação MD5 de arquivamento @@ -4934,7 +5170,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Tamanho arquivado @@ -4942,7 +5178,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metadados do documento original @@ -4950,7 +5186,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metadados do documento arquivado @@ -4958,7 +5194,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Pré-visualizar @@ -4966,7 +5202,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4974,11 +5210,11 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Digite a senha @@ -4986,7 +5222,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Salvar & próximo @@ -4994,18 +5230,10 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Salvar & Fechar - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Descartar - An error occurred loading content: @@ -6084,86 +6312,6 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Iniciando o upload... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Modelos de Consumo - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Adicionar Modelo - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Origem do documento - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Nenhum modelo definido. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Modelo salvo "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Erro ao salvar modelo. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirme exclusão do modelo - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Esta operação excluirá permanentemente esse modelo. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Modelo excluído - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Erro ao excluir modelo. - correspondent @@ -6720,6 +6868,78 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Você realmente deseja excluir a etiqueta ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6896,6 +7116,118 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index 7f7e23a8f..e21d24f8f 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Por último, e em nome de todos os contribuintes deste projeto suportado por uma comunidade, obrigado por utilizar o Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Descartar + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Guardar + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Registos @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Nome @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Ações @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Apagar @@ -1401,66 +1575,6 @@ Nenhuma vista gravada definida. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Guardar - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Tarefas de Ficheiro @@ -1589,24 +1703,6 @@ Limpar seleção - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Utilizadores e Grupos @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Editar @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Esta operação não pode ser revertida. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Continuar @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Documentação @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 Github @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 está disponível. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Clique para ver. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 O Paperless-ngx pode verificar automaticamente por atualizações @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Como é que isto funciona? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Atualização disponível @@ -2648,306 +2744,6 @@ Último ano - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Definir ao tipo de documento através de - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Definir correspondente - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Erro - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Cancelar - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Não distinguir entre maiúsculas e minúsculas + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Cancelar + Create new correspondent @@ -3412,6 +3276,18 @@ Definir o título através de + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Definir ao tipo de documento através de + Assign correspondent from @@ -3420,6 +3296,18 @@ Definir o correspondente através de + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Definir correspondente + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Erro + Only process attachments @@ -3740,6 +3644,330 @@ Editar conta de utilizador + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Conteúdo @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Data de modificação @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Data de adição @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Nome do ficheiro @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Nome original do ficheiro @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Checksum MD5 original @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Tamanho do ficheiro original @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Tipo mime original @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Checksum MD5 do arquivo @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Tamanho do arquivo @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metadados do documento original @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metadados do documento arquivado @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Pré-Visualizar @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Introduzir Palavra-Passe @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Guardar & próximo @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Gravar e fechar - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Descartar - An error occurred loading content: @@ -6083,86 +6311,6 @@ A iniciar o carregamento... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Tem a certeza que quer apagar a etiqueta ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 350930c3d..aa7801b41 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -393,13 +393,13 @@ Gestionați conturile de e-mail și regulile pentru importul automat de documente. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Şabloanele de consum vă oferă un control mai bun asupra procesului de ingestie a documentului. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ În cele din urmă, în numele fiecărui colaborator la acest proiect sprijinit de comunitate, vă mulţumim pentru că ați folosit Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Renunță + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Salvează + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Jurnale @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Nume @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Acțiuni @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Șterge @@ -1401,66 +1575,6 @@ Nu sunt definite vizualizări. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Salvează - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 File Tasks @@ -1589,24 +1703,6 @@ Clear selection - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Editează @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Această operațiune este ireversibilă. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Proceed @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Documentație @@ -2356,21 +2452,21 @@ Câmpuri personalizate - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Șabloane de consum - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Șabloane + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 este disponibilă. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Click pentru a vizualiza. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Sistemul poate verifica automat actualizările @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Cum funcţionează? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Actualizare disponibilă @@ -2648,306 +2744,6 @@ Ultimul an - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Ordinea de sortare - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filtre - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filtrare surse - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filtru nume fișier - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Aplică la documentele care se potrivesc cu acest nume de fișier. Wildcards cum ar fi *.pdf sau *factura* sunt permise. Masca insensibilă. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filtrare cale - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Regulă filtrare e-mail - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Aplică la documentele consumate prin această regulă de e-mail. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Assign document type - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assign correspondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Eroare - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Anulează - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Ignoră majusculele + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Anulează + Create new correspondent @@ -3412,6 +3276,18 @@ Atribuie titlu din + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Assign document type + Assign correspondent from @@ -3420,6 +3296,18 @@ Atribuie corespondent din + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assign correspondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Atribuiți proprietarul din regulă + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Eroare + Only process attachments @@ -3740,6 +3644,330 @@ Editează contul de utilizator + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Ordinea de sortare + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filtru nume fișier + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Aplică la documentele care se potrivesc cu acest nume de fișier. Wildcards cum ar fi *.pdf sau *factura* sunt permise. Masca insensibilă. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filtrare surse + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filtrare cale + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Regulă filtrare e-mail + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Aplică la documentele consumate prin această regulă de e-mail. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Stare @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Conținut @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Data ultimei modificări @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Data adăugării @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Numele fișierului media @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Original filename @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 MD5 original @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Dimensiunea fișierului original @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Tip MIME original @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 MD5 arhivă @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Mărimea arhivei @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metadatele documentului original @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metadatele documentului arhivat @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Preview @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Enter Password @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Salvează și continuă @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Renunță - An error occurred loading content: @@ -6083,86 +6311,6 @@ Initiating upload... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Sunteți sigur că doriți să ștergeți documentul ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 40a904fd4..457516a61 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Наконец, от имени каждого участника этого поддерживаемого сообществом проекта, благодарим вас за использование Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Отменить + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Сохранить + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Логи @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Имя @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Действия @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Удалить @@ -1401,66 +1575,6 @@ Нет сохраненных представлений. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Сохранить - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Файловые Задачи @@ -1589,24 +1703,6 @@ Отменить выбор - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Пользователи & Группы @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Редактировать @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Эту операцию нельзя отменить. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Продолжить @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Документация @@ -2356,21 +2452,21 @@ Пользовательские поля - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Шаблоны + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 доступно. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Нажмите для просмотра. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx может автоматически проверять наличие обновлений @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Как это работает? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Доступно обновление @@ -2648,306 +2744,6 @@ Год - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Фильтры - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Присвоить тип документа - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Присвоить корреспондента - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Ошибка - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Отменить - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - Загрузка API - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Получить почту - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Без учёта регистра + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Отменить + Create new correspondent @@ -3412,6 +3276,18 @@ Присвоить заголовок из + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Присвоить тип документа + Assign correspondent from @@ -3420,6 +3296,18 @@ Присвоить корреспондента из + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Присвоить корреспондента + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Ошибка + Only process attachments @@ -3740,6 +3644,330 @@ Редактировать учетную запись пользователя + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + Загрузка API + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Получить почту + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Статус @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Содержимое @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Дата изменения @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Дата добавления @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Имя файла @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Исходное имя файла @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Оригинальная MD5 сумма @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Размер оригинального файла @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Оригинальный MIME тип @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 MD5 сумма архива @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Размер архива @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Метаданные оригинального документа @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Метаданные архивного документа @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Предпросмотр @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Введите пароль @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Сохранить & следующий @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Отменить - An error occurred loading content: @@ -6083,86 +6311,6 @@ Начинается загрузка... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Шаблоны обработки - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Добавить шаблон - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Источник документа - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Ошибка удаления шаблона. - correspondent @@ -6719,6 +6867,78 @@ Вы действительно хотите удалить тег ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Ничего: Отключить сравнение + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index 88d89c3f0..07c66df61 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Nakoniec vám v mene všetkých prispievateľov tohto komunitou podporovaného projektu ďakujeme za využívanie Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Zahodiť + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Uložiť + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Logy @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Meno @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Akcie @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Vymazať @@ -1401,66 +1575,6 @@ Nie su uložené žiadne pohľady. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Uložiť - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Súborové úlohy @@ -1589,24 +1703,6 @@ Vymazať výber - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Používatelia & Skupiny @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Upraviť @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Túto akciu nie je možné vrátiť. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Pokračovať @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentácia @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 je dostupný. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Klikni pre zobrazenie. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx môže automaticky kontrolovať aktualizácie @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Ako to funguje? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Aktualizácia je k dispozícii @@ -2648,306 +2744,6 @@ Posledný rok - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Priradiť typ dokumentu - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Priradiť odosielateľa - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Chyba - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Zrušiť - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Nerozlišuje veľké a malé písmená + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Zrušiť + Create new correspondent @@ -3412,6 +3276,18 @@ Priradiť názov podľa + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Priradiť typ dokumentu + Assign correspondent from @@ -3420,6 +3296,18 @@ Priradiť odosielateľa podľa + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Priradiť odosielateľa + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Chyba + Only process attachments @@ -3740,6 +3644,330 @@ Upraviť užívateľský účet + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Obsah @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Dátum úpravy @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Dátum pridania @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Názov súboru médií @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Originál - názov @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Originál - MD5 @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Originál - veľkosť @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Pôvodný MIME typ @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Archív - MD5 @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Archív - veľkosť @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metadáta originálu @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metadáta archívu @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Náhľad @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Zadajte Heslo @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Uložiť & nasledujúci @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Uložiť & zatvoriť - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Zahodiť - An error occurred loading content: @@ -6083,86 +6311,6 @@ Spúšťa sa nahrávanie... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Naozaj chcete odstrániť štítok ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Žiadne: Vypnúť priraďovanie + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index 9035bc96b..a340547ae 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -393,13 +393,13 @@ Upravljajte e-poštne račune in pravila za samodejno uvažanje dokumentov. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Z zajemalnimi predlogami lahko natančneje nadzorujete postopek zaužitja dokumentov. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Za konec se vam v imenu vseh sodelujočih pri tem projektu, ki ga podpira skupnost, zahvaljujemo, da uporabljate Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Zavrzi + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Shrani + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Dnevniki @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Ime @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Dejanja @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Izbriši @@ -1401,66 +1575,6 @@ Ni določenih shranjenih pogledov. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Shrani - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Datotečne naloge @@ -1589,24 +1703,6 @@ Počisti izbiro - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Uporabniki & Skupine @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Uredi @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Te operacije ni mogoče razveljaviti. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Nadaljuj @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentacija @@ -2356,21 +2452,21 @@ Polja po meri - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Zajemalne predloge - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Predloge + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 je na voljo. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Klikni za ogled. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx lahko samodejno preveri za posodobitve @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Kako to deluje? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Posodobitev na voljo @@ -2648,306 +2744,6 @@ Prejšnje leto - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Vrstni red - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filtri - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Obdelaj dokumente, ki ustrezajo vsem spodaj navedenim filtrom. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filtriraj vire - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filtriraj imena datotek - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Uporabi za dokumente, ki ustrezajo temu imenu datoteke. Dovoljeni so nadomestni znaki, kot sta *.pdf ali *račun*. Neobčutljivo na velikost črk. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filtriraj pot - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Uporabi za dokumente, ki ustrezajo tej poti. Dovoljeni so nadomestni znaki, določeni kot *. Ni občutljivo na velikost črk.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filtriraj e-poštna pravila - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Uporabi za dokumente, zajete prek tega e-poštnega pravila. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Dodelitve - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Dodeli naslov - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Vključuje lahko nekatere nadomestne znake, glejte <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>dokumentacijo</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Dodeli oznake - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Dodeli vrsto dokumenta - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Dodeli dopisnika - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Dodeli pot shrambe - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Določi lastnika - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Dodeli dovoljenje za vpoglede - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Dodeli dovoljenje za urejanje - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Napaka - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Prekliči - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Zajemalna mapa - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API prenos - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Pridobi e-pošto - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Ustvari novo zajemalno predlogo - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Uredi zajemalno predlogo - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Brez razlikovanje velikosti črk + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Prekliči + Create new correspondent @@ -3412,6 +3276,18 @@ Dodeli naslov iz + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Dodeli vrsto dokumenta + Assign correspondent from @@ -3420,6 +3296,18 @@ Dodeli dopisnika iz + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Dodeli dopisnika + Assign owner from rule @@ -3428,6 +3316,22 @@ Dodeli lastnika s pravilom + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Napaka + Only process attachments @@ -3740,6 +3644,330 @@ Uredi uporabniški račun + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Vrstni red + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Dodeli naslov + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Dodeli oznake + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Dodeli pot shrambe + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Določi lastnika + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Dodeli dovoljenje za vpoglede + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Dodeli dovoljenje za urejanje + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filtriraj imena datotek + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Uporabi za dokumente, ki ustrezajo temu imenu datoteke. Dovoljeni so nadomestni znaki, kot sta *.pdf ali *račun*. Neobčutljivo na velikost črk. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filtriraj vire + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filtriraj pot + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Uporabi za dokumente, ki ustrezajo tej poti. Dovoljeni so nadomestni znaki, določeni kot *. Ni občutljivo na velikost črk.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filtriraj e-poštna pravila + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Uporabi za dokumente, zajete prek tega e-poštnega pravila. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Zajemalna mapa + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API prenos + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Pridobi e-pošto + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Stanje @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Vsebina @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Datum spremembe @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Datum vnosa @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Ime medijske datoteke @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Izvirno ime datoteke @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Izvirni MD5 checksum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Izvirna velikost datoteke @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Izvirna mime vrsta @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Arhiviran MD5 checksum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Velikost arhivske datoteke @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Izvirni metapodatki dokumenta @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Arhivirani metapodatki dokumenta @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Predogled @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Vnesi geslo @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Shrani & naslednjo @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Shrani & zapri - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Zavrzi - An error occurred loading content: @@ -6083,86 +6311,6 @@ Začetek nalaganja... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Zajemalne predloge - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Dodaj predlogo - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Vir dokumenta - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Ni definiranih predlog. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Shranjena predloga "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Napaka pri shranjevanju predloge. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Potrdi izbris predloge - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Ta operacija bo trajno izbrisala to predlogo. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Izbrisana predloga - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Napaka pri brisanju predloge. - correspondent @@ -6719,6 +6867,78 @@ Ali res želite izbrisati oznako ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Nič: Onemogočite ujemanje + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index fed1a2be4..0552b0c06 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -393,13 +393,13 @@ Upravljajte nalozima e-pošte i pravilima za automatski uvoz dokumenata. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Šabloni obrade vam daju bolju kontrolu nad procesom unosa dokumenta. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Na kraju, u ime svih koji doprinose ovom projektu koji podržava zajednica, hvala vam što koristite Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Odbaci + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Sačuvaj + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Logovi @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Naziv @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Akcije @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Obriši @@ -1401,66 +1575,6 @@ Nema definisanih sačuvanih pogleda. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Sačuvaj - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Obrada dokumenata @@ -1589,24 +1703,6 @@ Poništi izbor - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Korisnici & Grupe @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Uređivanje @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Ovu radnju nije moguće opozvati. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Nastavi @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentacija @@ -2356,21 +2452,21 @@ Dodatna polja - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Šabloni za obradu - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Šabloni + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 je dostupno. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Klik za prеglеd. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx može automatski da proveri da li postoje ažuriranja @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Kako ovo radi? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Dostupno jе ažuriranjе @@ -2648,306 +2744,6 @@ Prethodna godina - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Redosled sortiranja - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filteri - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Obradi dokumente koji se podudaraju sa svim filterima navedenim u nastavku. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filtriraj izvore - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filtriraj ime fajla - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Primeni na dokumente koji odgovaraju ovom imenu fajla. Dozvoljeni su džoker znakovi kao što su *.pdf ili *faktura*. Neosetljivo na velika i mala slova. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filtriraj putanju - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Primeni na dokumente koji odgovaraju ovoj putanji. Džoker znakovi navedeni kao * su dozvoljeni. Neosetljivo na velika i mala slova.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filtriraj pravilo e-pošte - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Primeni na dokumentima koji se obrađuju putem ovog pravila za poštu. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Zadaci - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Dodeli naslov - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Može uključiti neka rezervisana imena, pogledaj <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>dokumentaciju</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Dodeli oznake - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Dodeli tip dokumenta - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Dodeli korespodenta - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Dodeli putanju skladišta - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Dodeli dodatno polje - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Dodeli vlasnika - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Dodeli dozvolu za prikaz - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Dodeli dozvolu za izmenu - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Grеška - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Otkaži - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Folder za obradu - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API otpremanje - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Preuzimanje e-pošte - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Kreiraj novi šablon za obradu - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Izmeni šablon za obradu - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Bez razlike veliko/malo slovo + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Otkaži + Create new correspondent @@ -3412,6 +3276,18 @@ Dodeli naziv iz + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Dodeli tip dokumenta + Assign correspondent from @@ -3420,6 +3296,18 @@ Dodeli korespodenta iz + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Dodeli korespodenta + Assign owner from rule @@ -3428,6 +3316,22 @@ Dodeli vlasnika iz pravila + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Grеška + Only process attachments @@ -3740,6 +3644,330 @@ Izmeni korisnički nalog + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Redosled sortiranja + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Dodeli naslov + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Dodeli oznake + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Dodeli putanju skladišta + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Dodeli dodatno polje + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Dodeli vlasnika + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Dodeli dozvolu za prikaz + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Dodeli dozvolu za izmenu + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filtriraj ime fajla + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Primeni na dokumente koji odgovaraju ovom imenu fajla. Dozvoljeni su džoker znakovi kao što su *.pdf ili *faktura*. Neosetljivo na velika i mala slova. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filtriraj izvore + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filtriraj putanju + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Primeni na dokumente koji odgovaraju ovoj putanji. Džoker znakovi navedeni kao * su dozvoljeni. Neosetljivo na velika i mala slova.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filtriraj pravilo e-pošte + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Primeni na dokumentima koji se obrađuju putem ovog pravila za poštu. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Folder za obradu + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API otpremanje + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Preuzimanje e-pošte + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Sadržaj @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Datum izmene @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Datum dodavanja @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Naziv fajla @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Originalno ime fajla @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Originalni MD5 checksum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Originalna veličina fajla @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Originalni MIME tip @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Arhivni MD5 checksum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Arhivna veličina fajla @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Metapodaci originalnog dokumenta @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Metapodaci arhivnog dokumenta @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Pregled @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Unesite lozinku @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Sačuvaj & sledeći @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Sačuvaj i zatvori - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Odbaci - An error occurred loading content: @@ -6083,86 +6311,6 @@ Pokretanje otpremanja... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Šabloni potrošnje - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Dodaj šablon - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Izvori dokumenta - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Nema definisanih šablona. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Sačuvan šablon "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Greška prilikom čuvanja šablona. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Potvrdi brisanje šablona - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Ova operacija će trajno obrisati ovaj šablon. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Obrisan šablon - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Greška prilikom brisanja šablona. - correspondent @@ -6719,6 +6867,78 @@ Da li stvarno želite da obrišete oznaku ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Nijedan: Onemogućite podudaranje + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index 029c33429..fdb70be5b 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Till sist, från alla oss som bidragit till detta gemenskapsstödda projekt, tack för att du använder Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Avfärda + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Spara + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Loggar @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Namn @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Åtgärder @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Radera @@ -1401,66 +1575,6 @@ Inga sparade vyer har definierats. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Spara - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Filuppgifter @@ -1589,24 +1703,6 @@ Rensa markering - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Användare & Grupper @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Redigera @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Den här åtgärden kan inte ångras. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Fortsätt @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokumentation @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 är tillgänglig. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Klicka för att visa. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx kan automatiskt söka efter uppdateringar @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Hur fungerar detta? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Uppdatering tillgänglig @@ -2648,306 +2744,6 @@ Senaste året - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Tilldela dokumenttyp - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Tilldela korrespondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Fel - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Avbryt - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Ej skiftlägeskänsligt + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Avbryt + Create new correspondent @@ -3412,6 +3276,18 @@ Tilldela titel från + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Tilldela dokumenttyp + Assign correspondent from @@ -3420,6 +3296,18 @@ Tilldela korrespondent från + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Tilldela korrespondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Fel + Only process attachments @@ -3740,6 +3644,330 @@ Redigera användare + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Innehåll @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Datum ändrad @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Datum tillagd @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Media filnamn @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Ursprungligt filnamn @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Original MD5-kontrollsumma @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Ursprunglig filstorlek @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Ursprunglig mime-typ @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Arkiv MD5-kontrollsumma @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Arkiv filstorlek @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Ursprungliga dokument metadata @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Arkiverade dokument metadata @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Förhandsgranska @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Ange lösenord @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Spara & nästa @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Spara & stäng - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Avfärda - An error occurred loading content: @@ -6083,86 +6311,6 @@ Påbörjar uppladdning... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Vill du verkligen ta bort taggen ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Ingen: Inaktivera matchning + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index f035e002e..f5ea6ff45 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + ละทิ้ง + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + บันทึก + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Logs @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + ชื่อ @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + การดำเนินการ @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + ลบ @@ -1401,66 +1575,6 @@ No saved views defined. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - บันทึก - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 รายการงาน @@ -1589,24 +1703,6 @@ ล้างข้อมูลที่เลือกไว้ - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 ผู้ใช้งาน & กลุ่ม @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + แก้ไข @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + This operation cannot be undone. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + ดำเนินการ @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 เอกสารอ้างอิง @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 ใช้งานได้ @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 คลิกเพื่อดู @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx can automatically check for updates @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 ระบบนี้ทำงานยังไง? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 มีการอัพเดท @@ -2648,306 +2744,6 @@ ปีที่แล้ว - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - ตัวกรอง - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - กำหนดประเภทเอกสาร - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - กำหนดผู้เขียน - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - ข้อผิดพลาด - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - ยกเลิก - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + ไม่คำนึงถึงตัวพิมพ์เล็ก-ใหญ่ + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + ยกเลิก + Create new correspondent @@ -3412,6 +3276,18 @@ กำหนดชื่อจาก + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + กำหนดประเภทเอกสาร + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + กำหนดผู้เขียน + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + ข้อผิดพลาด + Only process attachments @@ -3740,6 +3644,330 @@ แก้ไขบัญชีผู้ใช้งาน + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + สถานะ @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 เนื้อหา @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 วันที่แก้ไข @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 วันที่เพิ่ม @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 ชื่อไฟล์สื่อ @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 ชื่อไฟล์ต้นฉบับ @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Original MD5 checksum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 ขนาดไฟล์เดิม @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 MIME Type ของไฟล์เดิม @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 MD5 checksum ของไฟล์เก็บถาวร @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 ขนาดไฟล์เก็บถาวร @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Original document metadata @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Archived document metadata @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 ตัวอย่าง @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 กรอกรหัสผ่าน @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 บันทึก & ถัดไป @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 บันทึก & ปิด - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - ละทิ้ง - An error occurred loading content: @@ -6083,86 +6311,6 @@ เริ่มต้นการอัปโหลด... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - ลบเทมเพลตแล้ว - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - เกิดข้อผิดพลาดในการลบเทมเพลต - correspondent @@ -6719,6 +6867,78 @@ Do you really want to delete the tag ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index 02857cb2c..39963dc7f 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Son olarak, bu topluluk destekli projeye katkıda bulunan herkes adına, Paperless-ngx'i kullandığınız için teşekkür ederiz! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Gözardı et + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Kaydet + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Günlükler @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + İsim @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Eylemler @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Sil @@ -1401,66 +1575,6 @@ Kaydedilmiş görünüm tanımlanmadı. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Kaydet - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Dosya Görevleri @@ -1589,24 +1703,6 @@ Seçimi temizle - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Düzenle @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Bu işlem geri alınamaz. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Devam et @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Dokümantasyon @@ -2356,21 +2452,21 @@ Özel alanlar - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Şablonlar + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 Github @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 is available. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Görüntülemek için tıklayın. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx can automatically check for updates @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Bu nasıl çalışıyor? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Güncelleme mevcut @@ -2648,306 +2744,6 @@ Geçen yıl - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sıralama - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filtreler - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Dosya adı filtrele - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Bu dosya adıyla eşleşen belgelere uygulayın, *.pdf veya *fatura* gibi joker karakterlere de izin verilir. Büyük/küçük harf fark etmeksizin. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filtre Yolu - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Posta kuralı filtrele - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Atamalar - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Başlık at - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Etiketler ata - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Dosya türü ata - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assign correspondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Sahip Ata - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Yeni görüntüleme izni ata - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Yeni değiştire izni ata - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Hata - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Vazgeç - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API yükle - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Posta Yükle - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Büyük / küçük harf duyarsız + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Vazgeç + Create new correspondent @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Dosya türü ata + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assign correspondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Hata + Only process attachments @@ -3740,6 +3644,330 @@ Kullanıcı hesabını düzenle + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sıralama + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Başlık at + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Etiketler ata + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Sahip Ata + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Yeni görüntüleme izni ata + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Yeni değiştire izni ata + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Dosya adı filtrele + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Bu dosya adıyla eşleşen belgelere uygulayın, *.pdf veya *fatura* gibi joker karakterlere de izin verilir. Büyük/küçük harf fark etmeksizin. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filtre Yolu + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Posta kuralı filtrele + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API yükle + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Posta Yükle + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Içerik @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Değiştirilme tarihi @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Ekleme tarihi @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Medya dosya ismi @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Orjinal dosya adı @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Orijinal MD5 sağlama toplamı @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Orijinal dosya boyutu @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Orijinal mime türü @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Arşiv MD5 sağlama toplamı @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Arşiv dosya boyutu @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Orijinal belge meta verisi @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Arşivlenen belge meta verileri @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Ön İzleme @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Parolayı girin @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Kaydet & sonraki @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Gözardı et - An error occurred loading content: @@ -6083,86 +6311,6 @@ Initiating upload... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ "" olan etiketi gerçekten silmek istiyormusunuz? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index c6f55b7e4..572252cea 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Наостанок хочемо подякувати від імені кожного, хто підтримує Paperless-ngx, за використання цього проєкту! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Скасувати + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Зберегти + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Логи @@ -467,7 +629,7 @@ src/app/components/admin/tasks/tasks.component.html 15 - Auto refresh + Автооновлення Loading... @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -899,7 +1061,7 @@ src/app/components/admin/settings/settings.component.html 184 - Default Permissions + Типові дозволи Settings apply to this user account for objects (Tags, Mail Rules, etc.) created via the web UI @@ -915,7 +1077,7 @@ src/app/components/admin/settings/settings.component.html 195 - Default Owner + Власник за замовчуванням Objects without an owner can be viewed and edited by all users @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Назва @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Дії @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Видалити @@ -1401,66 +1575,6 @@ Немає збережених представлень. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Зберегти - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Обробка файлів @@ -1589,24 +1703,6 @@ Зняти виділення - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Користувачі та групи @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Редагувати @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + Цю операцію неможливо скасувати. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Продовжити @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Документація @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Шаблони + + src/app/components/manage/workflows/workflows.component.html + 1 + + Робочі процеси Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 є доступним для оновлення. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Натисніть для перегляду. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx може автоматично перевіряти наявність оновлень @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Як це працює? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Доступне оновлення @@ -2648,306 +2744,6 @@ Минулий рік - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Порядок сортування - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Фільтри - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Призначити назву - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Призначити теги - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Призначити тип документа - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Призначити кореспондента - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Призначити власника - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Помилка - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Скасувати - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Нечутливий до регістру + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Скасувати + Create new correspondent @@ -3412,6 +3276,18 @@ Призначити назву з + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Призначити тип документа + Assign correspondent from @@ -3420,6 +3296,18 @@ Призначити кореспондента з + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Призначити кореспондента + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Помилка + Only process attachments @@ -3740,6 +3644,330 @@ Редагувати обліковий запис + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Порядок сортування + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Додати тригер + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Застосувати дії: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Додати дію + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Тип дії + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Призначити назву + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Може містити деякі заповнювачі, дивись <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>документацію</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Призначити теги + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Призначити шлях до сховища + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Призначити користувацькі поля + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Призначити власника + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Призначити дозволи на перегляд + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Призначити права на редагування + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Статус @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Вміст @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Дата зміни @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Дата додавання @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Назва медіафайлу @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Оригінальна назва файлу @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Оригінальна контрольна сума MD5 @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Оригінальний розмір файлу @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Оригінальний тип MIME @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Контрольна сума MD5 архіву @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Розмір архіву @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Метадані оригінального документа @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Метадані архівованого документа @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Попередній перегляд @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Введіть пароль @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Зберегти та перейти до наступного @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Зберегти та закрити - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Скасувати - An error occurred loading content: @@ -6083,86 +6311,6 @@ Ініціалізація відвантаження... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Додати шаблон - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Джерела документа - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - Немає шаблонів. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Шаблон "" збережено. - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Помилка збереження шаблона. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Підтвердьте видалення шаблона - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - Ця операція остаточно видалить цей шаблон. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Шаблон видалено - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Помилка видалення шаблону. - correspondent @@ -6719,6 +6867,78 @@ Ви дійсно хочете видалити тег ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ Немає: вимкнути зіставлення + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index bbca0c59d..52c95095a 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -393,13 +393,13 @@ Quản lý tài khoản e-mail và các quy tắc để tự động nhập tài liệu. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Mẫu sử dụng giúp bạn kiểm soát tốt hơn quá trình nhập tài liệu. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Cảm ơn bạn đã sử dụng hệ thống + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Discard + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Lưu + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Nhật ký @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Tên @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Hành động @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Xóa @@ -1401,66 +1575,6 @@ Không có chế độ xem đã lưu nào được xác định - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Lưu - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 Tác vụ tệp @@ -1589,24 +1703,6 @@ Bỏ lựa chọn - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Edit @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + This operation cannot be undone. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Proceed @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Tài liệu tham khảo @@ -2356,21 +2452,21 @@ Trường tùy chỉnh - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Mẫu - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Mẫu + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 đã có sẵn. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Nhấp để xem. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx can automatically check for updates @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 Cách thức hoạt động? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Update available @@ -2648,306 +2744,6 @@ Năm trước - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Thứ tự sắp xếp - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Bộ lọc - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Xử lý các tài liệu phù hợp với all bộ lọc dưới đây. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Lọc nguồn - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Lọc tên file - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Áp dụng cho các tài liệu khớp với tên tệp này. Cho phép sử dụng các ký tự đại diện như *.pdf hoặc *invoice*. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Lọc đường dẫn - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Áp dụng cho các tài liệu phù hợp với đường dẫn này. Cho phép các ký tự đại diện được chỉ định là *. Không phân biệt chữ hoa chữ thường.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Lọc mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Áp dụng cho các văn bản áp dụng mail rule này - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Nhiệm vụ giao - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Gán tiêu đề - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Có thể bao gồm một số vùng nhập, xem <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Gán thẻ - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Gán loại tài liệu - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Gán biên tập viên - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Gán đường dẫn lưu - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Gán người phụ trách - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Gán quyền xem - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Gán quyền sửa - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Lỗi - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Hủy - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Tạo bản mẫu cấu hình mới - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Trường hợp bình thường + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Hủy + Create new correspondent @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Gán loại tài liệu + Assign correspondent from @@ -3420,6 +3296,18 @@ Gán biên tập viên từ + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Gán biên tập viên + Assign owner from rule @@ -3428,6 +3316,22 @@ Gán chủ sở hữu từ rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Lỗi + Only process attachments @@ -3740,6 +3644,330 @@ Edit user account + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Thứ tự sắp xếp + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Gán tiêu đề + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Gán thẻ + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Gán đường dẫn lưu + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Gán người phụ trách + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Gán quyền xem + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Gán quyền sửa + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Lọc tên file + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Áp dụng cho các tài liệu khớp với tên tệp này. Cho phép sử dụng các ký tự đại diện như *.pdf hoặc *invoice*. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Lọc nguồn + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Lọc đường dẫn + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Áp dụng cho các tài liệu phù hợp với đường dẫn này. Cho phép các ký tự đại diện được chỉ định là *. Không phân biệt chữ hoa chữ thường.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Lọc mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Áp dụng cho các văn bản áp dụng mail rule này + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Trạng thái @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Content @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Date modified @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Date added @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Media filename @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Original filename @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Original MD5 checksum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Original file size @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Original mime type @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Archive MD5 checksum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Archive file size @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Original document metadata @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Archived document metadata @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Preview @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Enter Password @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Save & next @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Discard - An error occurred loading content: @@ -6083,86 +6311,6 @@ Initiating upload... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Do you really want to delete the tag ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 64eb50efd..0bdeb36ee 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -375,7 +375,7 @@ src/app/app.component.ts 159 - 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. @@ -383,7 +383,7 @@ src/app/app.component.ts 164 - Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. + 标签、通讯员、文档类型和存储路径都可以通过这些页面进行管理。它们也可以从文档编辑视图中创建。 Manage e-mail accounts and rules for automatically importing documents. @@ -391,15 +391,15 @@ src/app/app.component.ts 172 - Manage e-mail accounts and rules for automatically importing documents. + 管理电子邮件账户和自动导入文档的规则。 - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -407,7 +407,7 @@ src/app/app.component.ts 188 - 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 and toggle settings for saved views. @@ -415,7 +415,7 @@ src/app/app.component.ts 196 - Check out the settings for various tweaks to the web app and toggle settings for saved views. + 查看网页应用的各种调整设置并切换设置以保存视图。 Thank you! 🙏 @@ -431,7 +431,7 @@ src/app/app.component.ts 206 - 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. + 这里有<em>大量</em>的其他功能和信息我们没有涉及,但这应该能帮你开始。查看文档或访问GitHub上的项目来了解更多信息或报告问题。 Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! @@ -439,7 +439,169 @@ src/app/app.component.ts 208 - Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + 最后,代表社区支持项目的每个贡献者,感谢您使用无纸版! + + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + 放弃 + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + 保存 + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 日志 @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -991,7 +1153,7 @@ src/app/components/common/input/permissions/permissions-form/permissions-form.component.html 65 - Groups: + 群组: Default Edit Permissions @@ -999,7 +1161,7 @@ src/app/components/admin/settings/settings.component.html 231 - Default Edit Permissions + 默认编辑权限 Edit permissions also grant viewing permissions @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + 名称 @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + 操作 @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + 删除 @@ -1401,66 +1575,6 @@ 未定义保存的视图。 - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - 保存 - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 文件任务 @@ -1589,24 +1703,6 @@ 清除选定内容 - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 用户 & 组 @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + 编辑 @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + 此操作无法撤消。 @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + 继续操作 @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 帮助文档 @@ -2356,21 +2452,21 @@ 自定义字段 - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - 模板 + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 可用 @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 点击查看 @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx 可以自动检查更新 @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 这是如何运作的? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 有可用更新 @@ -2648,306 +2744,6 @@ 去年 - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - 排列顺序 - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - 筛选 - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - 处理匹配 所有 下方指定的筛选。 - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - 筛选源 - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - 筛选文件名 - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - 应用于匹配此文件名的文档。允许使用通配符,如 *.pdf 或 *发票*。不区分大小写。 - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - 筛选路径 - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - 应用于匹配此路径的文档。允许指定为*的通配符。不区分大小写。</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - 筛选邮件规则 - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - 指定标题 - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - 分配标签 - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - 分配文档类型 - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - 分配联系人 - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - 指定存储路径 - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - 分配自定义字段 - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - 分配用户 - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - 分配查看权限 - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - 分配编辑权限 - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - 错误 - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - 取消 - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - 消费文件夹 - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - Api上传 - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - 邮件获取 - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - 创建新的处理模板 - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - 编辑处理模板 - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + 忽略大小写 + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + 取消 + Create new correspondent @@ -3386,7 +3250,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 28 - Action is only performed when documents are consumed from the mail. Mails without attachments remain entirely untouched. + 只有当从邮件中摄取文档时才执行操作。没有附件的邮件完全不受影响。 Action parameter @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + 分配文档类型 + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + 分配联系人 + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + 错误 + Only process attachments @@ -3740,6 +3644,330 @@ Edit user account + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + 排列顺序 + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + 指定标题 + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + 分配标签 + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + 指定存储路径 + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + 分配自定义字段 + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + 分配用户 + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + 分配查看权限 + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + 分配编辑权限 + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + 筛选文件名 + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + 应用于匹配此文件名的文档。允许使用通配符,如 *.pdf 或 *发票*。不区分大小写。 + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + 筛选源 + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + 筛选路径 + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + 应用于匹配此路径的文档。允许指定为*的通配符。不区分大小写。</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + 筛选邮件规则 + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + 消费文件夹 + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + Api上传 + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + 邮件获取 + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,7 +4584,11 @@ src/app/components/common/toasts/toasts.component.html 28 - Status + + src/app/components/manage/workflows/workflows.component.html + 16 + + 运行状态 Copy Raw Error @@ -4464,7 +4700,7 @@ src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html 39 - View Preview + 查看预览 Download @@ -4707,7 +4943,7 @@ src/app/components/document-detail/document-detail.component.html 9 - - + - + @@ -4715,7 +4951,7 @@ src/app/components/document-detail/document-detail.component.html 17 - + + + Download original @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 内容 @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 修改日期 @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 日期已添加 @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 媒体文件名 @@ -4893,15 +5129,15 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 - Original filename + 原文件名 Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 原始 MD5 校验和 @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 原始文件大小 @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 原始 mime 类型 @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 归档 MD5 校验和 @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 归档文件大小 @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 原始文档元数据 @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 归档文档元数据 @@ -4957,27 +5193,27 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 - Preview + 预览 Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 - Notes + 备注 Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 输入密码 @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 保存 & 下一个 @@ -4993,17 +5229,9 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 - Save & close - - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - 放弃 + 保存并关闭 An error occurred loading content: @@ -5011,7 +5239,7 @@ src/app/components/document-detail/document-detail.component.ts 276,278 - An error occurred loading content: + 加载内容时出错: Error retrieving metadata @@ -5019,7 +5247,7 @@ src/app/components/document-detail/document-detail.component.ts 424 - Error retrieving metadata + 获取元数据时出错 Error retrieving suggestions. @@ -5027,7 +5255,7 @@ src/app/components/document-detail/document-detail.component.ts 445 - Error retrieving suggestions. + 获取建议时出错。 Document saved successfully. @@ -5039,7 +5267,7 @@ src/app/components/document-detail/document-detail.component.ts 572 - Document saved successfully. + 文档已成功保存。 Error saving document @@ -5051,7 +5279,7 @@ src/app/components/document-detail/document-detail.component.ts 617 - Error saving document + 保存文档出错 Confirm delete @@ -5095,7 +5323,7 @@ src/app/components/document-detail/document-detail.component.ts 666 - Error deleting document + 删除文档出错。 Redo OCR confirm @@ -5115,7 +5343,7 @@ src/app/components/document-detail/document-detail.component.ts 687 - This operation will permanently redo OCR for this document. + 此操作将为此文档永久重做OCR。 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. @@ -5123,7 +5351,7 @@ src/app/components/document-detail/document-detail.component.ts 698 - 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. + 重做OCR 操作将在后台开始。关闭并在操作完成后重新打开或重新加载此文档以查看新内容。 Error executing operation @@ -5139,7 +5367,7 @@ src/app/components/document-detail/document-detail.component.ts 778 - Page Fit + 适应页面 Select: @@ -5219,7 +5447,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 116,118 - Archived files + 存档的文件 Original files @@ -5227,7 +5455,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 122,124 - Original files + 原始文件 Use formatted filename @@ -5235,7 +5463,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 129,131 - Use formatted filename + 使用格式化文件名 Error executing bulk operation @@ -5457,7 +5685,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 83 - View notes + 查看备注 Notes @@ -5465,7 +5693,7 @@ src/app/components/document-list/document-card-large/document-card-large.component.html 87 - Notes + 备注 Filter by document type @@ -5681,7 +5909,7 @@ src/app/components/document-list/document-list.component.html 153 - Sort by ASN + 按ASN排序 ASN @@ -5705,7 +5933,7 @@ src/app/components/document-list/document-list.component.html 160 - Sort by correspondent + 按联系人排序 Sort by title @@ -5713,7 +5941,7 @@ src/app/components/document-list/document-list.component.html 167 - Sort by title + 按标题排序 Sort by owner @@ -5721,7 +5949,7 @@ src/app/components/document-list/document-list.component.html 175 - Sort by owner + 通过所有者分类 Owner @@ -5741,7 +5969,7 @@ src/app/components/document-list/document-list.component.html 183 - Sort by notes + 按注释排序 Sort by document type @@ -5749,7 +5977,7 @@ src/app/components/document-list/document-list.component.html 191 - Sort by document type + 按文档类型排序 Sort by storage path @@ -5757,7 +5985,7 @@ src/app/components/document-list/document-list.component.html 198 - Sort by storage path + 按存储路径排序 Sort by created date @@ -5765,7 +5993,7 @@ src/app/components/document-list/document-list.component.html 205 - Sort by created date + 按创建日期排序 Sort by added date @@ -5773,7 +6001,7 @@ src/app/components/document-list/document-list.component.html 212 - Sort by added date + 按所添加时间排序 Added @@ -5829,7 +6057,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 117 - Custom fields + 自定义字段 Advanced search @@ -5909,7 +6137,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 176,178 - Document type: + 文档类型: Without document type @@ -5925,7 +6153,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 186,188 - Storage path: + 存储路径: Without storage path @@ -5933,7 +6161,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 190 - Without storage path + 没有存储路径 Tag: @@ -5973,7 +6201,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 209 - Owner: + 所有者: Owner not in: @@ -5981,7 +6209,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 212 - Owner not in: + 所有者不在: Without an owner @@ -5989,7 +6217,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.ts 215 - Without an owner + 没有所有者 Save current view @@ -6083,86 +6311,6 @@ 正在初始化上传... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ 您真的想要删除标签“ ”吗? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ 无: 禁用匹配 + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 0d0ab48be..072fe08f1 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -393,13 +393,13 @@ Manage e-mail accounts and rules for automatically importing documents. - - Consumption templates give you finer control over the document ingestion process. + + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Consumption templates give you finer control over the document ingestion process. + Workflows give you more control over the document pipeline. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,6 +441,168 @@ Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + Configuration + + src/app/components/admin/config/config.component.html + 1 + + + src/app/components/app-frame/app-frame.component.html + 276 + + + src/app/components/app-frame/app-frame.component.html + 280 + + Configuration + + + + + + + src/app/components/admin/config/config.component.html + 8,9 + + + src/app/components/admin/tasks/tasks.component.html + 11 + + + src/app/components/common/input/tags/tags.component.html + 4 + + + src/app/components/common/permissions-select/permissions-select.component.html + 22 + + + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 19 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 30 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 48 + + + src/app/components/document-detail/document-detail.component.html + 339 + + Discard + + + Save + + src/app/components/admin/config/config.component.html + 51 + + + src/app/components/admin/settings/settings.component.html + 337 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + 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 + 37 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 49 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 36 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 171 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 58 + + + src/app/components/document-detail/document-detail.component.html + 331 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + Save + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 79 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 105 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 148 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 153 + + An error occurred updating configuration + Logs @@ -449,11 +611,11 @@ src/app/components/app-frame/app-frame.component.html - 300 + 309 src/app/components/app-frame/app-frame.component.html - 305 + 314 Logs @@ -513,7 +675,7 @@ src/app/components/document-detail/document-detail.component.html - 303 + 348 src/app/components/document-list/document-list.component.html @@ -857,7 +1019,7 @@ src/app/components/document-detail/document-detail.component.html - 252 + 297 src/app/components/document-list/bulk-editor/bulk-editor.component.html @@ -948,12 +1110,12 @@ 236 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 47 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 66 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 135 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -976,12 +1138,12 @@ 246 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 55 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 124 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 74 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1008,8 +1170,8 @@ 255 - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 80 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1123,10 +1285,6 @@ src/app/components/admin/users-groups/users-groups.component.html 63 - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 10 - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html 9 @@ -1160,12 +1318,12 @@ 8 - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 8 + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 10 - src/app/components/manage/consumption-templates/consumption-templates.component.html - 14 + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 src/app/components/manage/custom-fields/custom-fields.component.html @@ -1211,6 +1369,10 @@ src/app/components/manage/management-list/management-list.component.html 41 + + src/app/components/manage/workflows/workflows.component.html + 14 + Name @@ -1263,6 +1425,10 @@ src/app/components/admin/users-groups/users-groups.component.html 66 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 66 + src/app/components/document-detail/document-detail.component.html 49 @@ -1271,10 +1437,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 86 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 17 - src/app/components/manage/custom-fields/custom-fields.component.html 16 @@ -1303,6 +1465,10 @@ src/app/components/manage/management-list/management-list.component.html 47 + + src/app/components/manage/workflows/workflows.component.html + 18 + Actions @@ -1323,6 +1489,14 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts 53 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 92 + src/app/components/common/permissions-select/permissions-select.component.html 9 @@ -1339,10 +1513,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html 142 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 37 - src/app/components/manage/custom-fields/custom-fields.component.html 35 @@ -1391,6 +1561,10 @@ src/app/components/manage/management-list/management-list.component.ts 205 + + src/app/components/manage/workflows/workflows.component.html + 39 + Delete @@ -1401,66 +1575,6 @@ No saved views defined. - - Save - - src/app/components/admin/settings/settings.component.html - 337 - - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 93 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 16 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 27 - - - 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 - 37 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 49 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 26 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 28 - - - src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html - 36 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 58 - - - src/app/components/document-detail/document-detail.component.html - 286 - - - src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html - 21 - - Save - Use system language @@ -1561,7 +1675,7 @@ src/app/components/app-frame/app-frame.component.html - 287 + 296 File Tasks @@ -1589,24 +1703,6 @@ Clear selection - - - - - - src/app/components/admin/tasks/tasks.component.html - 11 - - - src/app/components/common/input/tags/tags.component.html - 4 - - - src/app/components/common/permissions-select/permissions-select.component.html - 22 - - - Created @@ -1787,11 +1883,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 285 src/app/components/app-frame/app-frame.component.html - 280 + 289 Users & Groups @@ -1873,10 +1969,6 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 105 - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 32 - src/app/components/manage/custom-fields/custom-fields.component.html 30 @@ -1921,6 +2013,10 @@ src/app/components/manage/management-list/management-list.component.html 103 + + src/app/components/manage/workflows/workflows.component.html + 34 + Edit @@ -2005,10 +2101,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 500 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 91 - src/app/components/manage/custom-fields/custom-fields.component.ts 73 @@ -2021,6 +2113,10 @@ src/app/components/manage/mail/mail.component.ts 173 + + src/app/components/manage/workflows/workflows.component.ts + 97 + This operation cannot be undone. @@ -2041,10 +2137,6 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.ts 502 - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 93 - src/app/components/manage/custom-fields/custom-fields.component.ts 75 @@ -2057,6 +2149,10 @@ src/app/components/manage/mail/mail.component.ts 175 + + src/app/components/manage/workflows/workflows.component.ts + 99 + Proceed @@ -2172,11 +2268,11 @@ src/app/components/app-frame/app-frame.component.html - 310 + 319 src/app/components/app-frame/app-frame.component.html - 315 + 324 Documentation @@ -2356,21 +2452,21 @@ Custom Fields - - Consumption templates + + Workflows src/app/components/app-frame/app-frame.component.html 241 - Consumption templates - - - Templates src/app/components/app-frame/app-frame.component.html 245 - Templates + + src/app/components/manage/workflows/workflows.component.html + 1 + + Workflows Mail @@ -2396,7 +2492,7 @@ File Tasks src/app/components/app-frame/app-frame.component.html - 294,296 + 303,305 File Tasks @@ -2404,7 +2500,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 322 + 331 GitHub @@ -2412,7 +2508,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 331,332 + 340,341 is available. @@ -2420,7 +2516,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 332 + 341 Click to view. @@ -2428,7 +2524,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 336 + 345 Paperless-ngx can automatically check for updates @@ -2436,7 +2532,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 343,345 + 352,354 How does this work? @@ -2444,7 +2540,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 359 + 368 Update available @@ -2648,306 +2744,6 @@ 上年度 - - Sort order - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 13 - - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 15 - - Sort order - - - Filters - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 18 - - Filters - - - Process documents that match all filters specified below. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 19 - - Process documents that match all filters specified below. - - - Filter sources - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 20 - - Filter sources - - - Filter filename - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Filter filename - - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 21 - - Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. - - - Filter path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Filter path - - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 22 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> - - - Filter mail rule - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Filter mail rule - - - Apply to documents consumed via this mail rule. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 23 - - Apply to documents consumed via this mail rule. - - - Assignments - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 28 - - Assignments - - - Assign title - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Assign title - - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 33 - - Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#consumption-templates'>documentation</a>. - - - Assign tags - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 34 - - Assign tags - - - Assign document type - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 35 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 35 - - Assign document type - - - Assign correspondent - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 38 - - Assign correspondent - - - Assign storage path - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 37 - - Assign storage path - - - Assign custom fields - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 38 - - Assign custom fields - - - Assign owner - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 41 - - Assign owner - - - Assign view permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 43 - - Assign view permissions - - - Assign edit permissions - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 62 - - Assign edit permissions - - - Error - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 90 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 46 - - - src/app/components/common/toasts/toasts.component.html - 30 - - Error - - - Cancel - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.html - 92 - - - src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html - 24 - - - src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html - 15 - - - src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html - 26 - - - 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 - 36 - - - src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html - 48 - - - src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html - 25 - - - src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html - 27 - - - 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 - 22 - - - src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html - 57 - - - 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 - 20 - - Cancel - - - Consume Folder - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 27 - - Consume Folder - - - API Upload - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 31 - - API Upload - - - Mail Fetch - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 35 - - Mail Fetch - - - Create new consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 92 - - Create new consumption template - - - Edit consumption template - - src/app/components/common/edit-dialog/consumption-template-edit-dialog/consumption-template-edit-dialog.component.ts - 96 - - Edit consumption template - Matching algorithm @@ -3006,8 +2802,76 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 18 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 194 + Case insensitive + + Cancel + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 24 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 26 + + + 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 + 36 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 22 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 57 + + + 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 + 20 + + Cancel + Create new correspondent @@ -3412,6 +3276,18 @@ Assign title from + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 104 + + Assign document type + Assign correspondent from @@ -3420,6 +3296,18 @@ Assign correspondent from + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 38 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 105 + + Assign correspondent + Assign owner from rule @@ -3428,6 +3316,22 @@ Assign owner from rule + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 46 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + + src/app/components/common/toasts/toasts.component.html + 30 + + Error + Only process attachments @@ -3740,6 +3644,330 @@ Edit user account + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/manage/workflows/workflows.component.html + 15 + + Sort order + + + Enabled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 27 + + Enabled + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 22 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 28 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 72 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 77 + + Add Action + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 98 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 102 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 103 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 106 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 107 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 110 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 112 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 131 + + Assign edit permissions + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 178 + + Trigger type + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 179 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 182 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 184 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Filter path + + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 185 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 186 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 189 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 191 + + Content matching pattern + + + Has tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 200 + + Has tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 201 + + Has correspondent + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 202 + + Has document type + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 38 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 42 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 46 + + Mail Fetch + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 53 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 57 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 61 + + Document Updated + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 68 + + Assignment + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Edit workflow + All @@ -3829,15 +4057,19 @@ src/app/components/common/input/number/number.component.html - 9 + 11 src/app/components/common/input/select/select.component.html 11 + + src/app/components/common/input/switch/switch.component.html + 10 + src/app/components/common/input/text/text.component.html - 9 + 11 src/app/components/common/input/url/url.component.html @@ -4352,6 +4584,10 @@ src/app/components/common/toasts/toasts.component.html 28 + + src/app/components/manage/workflows/workflows.component.html + 16 + Status @@ -4849,7 +5085,7 @@ Content src/app/components/document-detail/document-detail.component.html - 161 + 206 Content @@ -4857,7 +5093,7 @@ Metadata src/app/components/document-detail/document-detail.component.html - 170 + 215 src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts @@ -4869,7 +5105,7 @@ Date modified src/app/components/document-detail/document-detail.component.html - 177 + 222 Date modified @@ -4877,7 +5113,7 @@ Date added src/app/components/document-detail/document-detail.component.html - 181 + 226 Date added @@ -4885,7 +5121,7 @@ Media filename src/app/components/document-detail/document-detail.component.html - 185 + 230 Media filename @@ -4893,7 +5129,7 @@ Original filename src/app/components/document-detail/document-detail.component.html - 189 + 234 Original filename @@ -4901,7 +5137,7 @@ Original MD5 checksum src/app/components/document-detail/document-detail.component.html - 193 + 238 Original MD5 checksum @@ -4909,7 +5145,7 @@ Original file size src/app/components/document-detail/document-detail.component.html - 197 + 242 Original file size @@ -4917,7 +5153,7 @@ Original mime type src/app/components/document-detail/document-detail.component.html - 201 + 246 Original mime type @@ -4925,7 +5161,7 @@ Archive MD5 checksum src/app/components/document-detail/document-detail.component.html - 206 + 251 Archive MD5 checksum @@ -4933,7 +5169,7 @@ Archive file size src/app/components/document-detail/document-detail.component.html - 212 + 257 Archive file size @@ -4941,7 +5177,7 @@ Original document metadata src/app/components/document-detail/document-detail.component.html - 221 + 266 Original document metadata @@ -4949,7 +5185,7 @@ Archived document metadata src/app/components/document-detail/document-detail.component.html - 224 + 269 Archived document metadata @@ -4957,7 +5193,7 @@ Preview src/app/components/document-detail/document-detail.component.html - 231 + 276 Preview @@ -4965,7 +5201,7 @@ Notes src/app/components/document-detail/document-detail.component.html - 241,244 + 286,289 Notes @@ -4973,11 +5209,11 @@ Enter Password src/app/components/document-detail/document-detail.component.html - 275 + 320 src/app/components/document-detail/document-detail.component.html - 332 + 377 Enter Password @@ -4985,7 +5221,7 @@ Save & next src/app/components/document-detail/document-detail.component.html - 288 + 333 Save & next @@ -4993,18 +5229,10 @@ Save & close src/app/components/document-detail/document-detail.component.html - 291 + 336 Save & close - - Discard - - src/app/components/document-detail/document-detail.component.html - 294 - - Discard - An error occurred loading content: @@ -6083,86 +6311,6 @@ Initiating upload... - - Consumption Templates - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 1 - - Consumption Templates - - - Add Template - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 6 - - Add Template - - - Document Sources - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 16 - - Document Sources - - - No templates defined. - - src/app/components/manage/consumption-templates/consumption-templates.component.html - 45 - - No templates defined. - - - Saved template "". - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 73 - - Saved template "". - - - Error saving template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 81 - - Error saving template. - - - Confirm delete template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 89 - - Confirm delete template - - - This operation will permanently delete this template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 90 - - This operation will permanently delete this template. - - - Deleted template - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 99 - - Deleted template - - - Error deleting template. - - src/app/components/manage/consumption-templates/consumption-templates.component.ts - 104 - - Error deleting template. - correspondent @@ -6719,6 +6867,78 @@ Do you really want to delete the tag ""? + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 6 + + Add Workflow + + + Disabled + + src/app/components/manage/workflows/workflows.component.html + 27 + + Disabled + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 47 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 79 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 87 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 95 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 96 + + This operation will permanently delete this workflow. + + + Deleted workflow + + src/app/components/manage/workflows/workflows.component.ts + 105 + + Deleted workflow + + + Error deleting workflow. + + src/app/components/manage/workflows/workflows.component.ts + 110 + + Error deleting workflow. + Not Found @@ -6895,6 +7115,118 @@ None: Disable matching + + OCR Settings + + src/app/data/paperless-config.ts + 49 + + OCR Settings + + + Output Type + + src/app/data/paperless-config.ts + 73 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 81 + + Language + + + Pages + + src/app/data/paperless-config.ts + 88 + + Pages + + + Mode + + src/app/data/paperless-config.ts + 95 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 103 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 111 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 118 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 126 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 133 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 140 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 147 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 154 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 162 + + OCR Arguments + Warning: You have unsaved changes to your document(s). diff --git a/src/locale/af_ZA/LC_MESSAGES/django.po b/src/locale/af_ZA/LC_MESSAGES/django.po index c3380b19e..549323505 100644 --- a/src/locale/af_ZA/LC_MESSAGES/django.po +++ b/src/locale/af_ZA/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Afrikaans\n" "Language: af_ZA\n" @@ -25,27 +25,27 @@ msgstr "Dokumente" msgid "owner" msgstr "eienaar" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Geen" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Enige woord" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Alle woorde" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Presiese ooreenkoms" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Reguliere uitdrukking" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Wasige woord" @@ -53,20 +53,20 @@ msgstr "Wasige woord" msgid "Automatic" msgstr "Outomaties" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "naam" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "ooreenkoms" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "ooreenkomsalgoritme" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "hoofletterongevoelig" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "volgorde" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Verwerk slegs dokumente wat volledig met hierdie lêernaam ooreenkom indien gespesifiseer. U kan jokertekens soos *.pdf of *faktuur* gebruik. Hoofletterongevoelig." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "ken hierdie etiket toe" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "ken hierdie dokumenttipe toe" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "ken hierdie korrespondent toe" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "ken hierdie etiket toe" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "ken hierdie dokumenttipe toe" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "ken hierdie korrespondent toe" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "volgorde" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ongeldige reguliere uitdrukking: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Ongeldige kleur." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Lêertipe %(type)s word nie ondersteun nie" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Ongeldige veranderlike bespeur." @@ -854,135 +910,286 @@ msgstr "E-pos" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Engels (VS)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Arabies" - -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Belorussies" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "Katalaans" - -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Tsjeggies" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Deens" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Duits" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Engels (GB)" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Spaans" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "Fins" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Frans" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Italiaans" +msgid "English (US)" +msgstr "Engels (VS)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Luxemburgs" +msgid "Arabic" +msgstr "Arabies" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" -msgstr "Nederlands" +msgid "Belarusian" +msgstr "Belorussies" #: paperless/settings.py:605 -msgid "Polish" -msgstr "Pools" +msgid "Bulgarian" +msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" -msgstr "Portugees (Brasilië)" +msgid "Catalan" +msgstr "Katalaans" #: paperless/settings.py:607 -msgid "Portuguese" -msgstr "Portugees" +msgid "Czech" +msgstr "Tsjeggies" #: paperless/settings.py:608 -msgid "Romanian" -msgstr "Roemeens" +msgid "Danish" +msgstr "Deens" #: paperless/settings.py:609 -msgid "Russian" -msgstr "Russies" +msgid "German" +msgstr "Duits" #: paperless/settings.py:610 -msgid "Slovak" +msgid "Greek" msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" -msgstr "Sloweens" +msgid "English (GB)" +msgstr "Engels (GB)" #: paperless/settings.py:612 -msgid "Serbian" -msgstr "Serwies" +msgid "Spanish" +msgstr "Spaans" #: paperless/settings.py:613 -msgid "Swedish" -msgstr "Sweeds" +msgid "Finnish" +msgstr "Fins" #: paperless/settings.py:614 -msgid "Turkish" -msgstr "Turks" +msgid "French" +msgstr "Frans" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "Italiaans" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Luxemburgs" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "Nederlands" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "Pools" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "Portugees (Brasilië)" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "Portugees" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "Roemeens" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "Russies" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "Sloweens" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "Serwies" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "Sweeds" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "Turks" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Vereenvoudigde Sjinees" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administrasie" diff --git a/src/locale/ar_AR/LC_MESSAGES/django.po b/src/locale/ar_AR/LC_MESSAGES/django.po index f37236863..ef34ab4ae 100644 --- a/src/locale/ar_AR/LC_MESSAGES/django.po +++ b/src/locale/ar_AR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-26 00:23\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Language: ar_SA\n" @@ -25,27 +25,27 @@ msgstr "المستندات" msgid "owner" msgstr "مالك" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "لا شيء" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "أي كلمة" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "كل الكلمات" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "تطابق تام" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "التعابير النظامية" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "كلمة غامضة" @@ -53,20 +53,20 @@ msgstr "كلمة غامضة" msgid "Automatic" msgstr "تلقائي" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "اسم" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "تطابق" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "خوارزمية مطابقة" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "غير حساس" @@ -429,7 +429,7 @@ msgstr "" #: documents/models.py:459 msgid "is shared by me" -msgstr "" +msgstr "تم المشاركة من قبلي" #: documents/models.py:469 msgid "rule type" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "‏مِلَفّ الاستهلاك" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "تحميل Api" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "جلب البريد" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "الطلب" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "مسار التصفية" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "فقط استهلك المستندات ذات المسار الذي يطابق هذا إذا تم تحديده. البطاقات البرية المحددة كما * مسموح بها. الحالة غير حساسة." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "تصفية اسم الملف" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "فقط المستندات التي تتطابق تماما مع اسم هذا المِلَفّ إذا تم تحديدها. المحارف البديلة مثل *.pdf أو *الفواتير* مسموح بها. لأنها غير حساسة." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "تصفية المستندات من قاعدة البريد هذه" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "تعيين العنوان" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "تعيين عنوان مستند، يمكن أن يتضمن بعض العناصر النائبة، انظر الوثائق." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "تعيين هذه العلامة" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "تعيين نوع هذا المستند" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "تعيين هذا المراسل" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "تعيين مسار التخزين هذا" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "تعيين هذا المالك" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "منح أذونات العرض إلى هؤلاء المستخدمين" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "منح صلاحيات العرض إلى هذه المجموعات" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "منح صلاحيات التغيير لهؤلاء المستخدمين" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "منح صلاحيات التغيير إلى هذه المجموعات" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "قالب الاستهلاك" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "قوالب الاستهلاك" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "الطلب" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "التعبير النظامي خاطىء: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "لون خاطئ." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "نوع الملف %(type)s غير مدعوم" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "اكتشاف متغير خاطئ." @@ -854,135 +910,286 @@ msgstr "البريد الإلكتروني" msgid "Send me instructions!" msgstr "أرسل لي التعليمات!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "لا ورقي" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "الإنجليزية (الولايات المتحدة)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "العربية" - -#: paperless/settings.py:588 -msgid "Afrikaans" -msgstr "اللغة الأفريقانية" - -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "البيلاروسية" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "اللغة الكتالونية" +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "التشيكية" +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" -#: paperless/settings.py:593 -msgid "Danish" -msgstr "الدانماركية" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:594 -msgid "German" -msgstr "الألمانية" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:595 -msgid "Greek" -msgstr "اليونانية" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "الإنجليزية (المملكة المتحدة)" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "الإسبانية" +#: paperless/models.py:40 +msgid "force" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "الفنلندية" +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "الفرنسية" +#: paperless/models.py:49 +msgid "never" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 +msgid "English (US)" +msgstr "الإنجليزية (الولايات المتحدة)" + +#: paperless/settings.py:602 +msgid "Arabic" +msgstr "العربية" + +#: paperless/settings.py:603 +msgid "Afrikaans" +msgstr "اللغة الأفريقانية" + +#: paperless/settings.py:604 +msgid "Belarusian" +msgstr "البيلاروسية" + +#: paperless/settings.py:605 +msgid "Bulgarian" +msgstr "" + +#: paperless/settings.py:606 +msgid "Catalan" +msgstr "اللغة الكتالونية" + +#: paperless/settings.py:607 +msgid "Czech" +msgstr "التشيكية" + +#: paperless/settings.py:608 +msgid "Danish" +msgstr "الدانماركية" + +#: paperless/settings.py:609 +msgid "German" +msgstr "الألمانية" + +#: paperless/settings.py:610 +msgid "Greek" +msgstr "اليونانية" + +#: paperless/settings.py:611 +msgid "English (GB)" +msgstr "الإنجليزية (المملكة المتحدة)" + +#: paperless/settings.py:612 +msgid "Spanish" +msgstr "الإسبانية" + +#: paperless/settings.py:613 +msgid "Finnish" +msgstr "الفنلندية" + +#: paperless/settings.py:614 +msgid "French" +msgstr "الفرنسية" + +#: paperless/settings.py:615 +msgid "Hungarian" +msgstr "" + +#: paperless/settings.py:616 msgid "Italian" msgstr "الإيطالية" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "اللوكسمبرجية" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "النرويجية" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "الهولندية" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "البولندية" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "البرتغالية (البرازيل)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "البرتغالية" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "الرومانية" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "الروسية" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "السلوفاكية" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "السلوفانية" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "الصربية" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "السويدية" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "التركية" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "الأوكرانية" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "الصينية المبسطة" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx الإدارة" diff --git a/src/locale/be_BY/LC_MESSAGES/django.po b/src/locale/be_BY/LC_MESSAGES/django.po index 1fd2d1a72..e21773ed3 100644 --- a/src/locale/be_BY/LC_MESSAGES/django.po +++ b/src/locale/be_BY/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Belarusian\n" "Language: be_BY\n" @@ -25,27 +25,27 @@ msgstr "Дакументы" msgid "owner" msgstr "" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Любое слова" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Усе словы" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Дакладнае супадзенне" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Рэгулярны выраз" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Невыразнае слова" @@ -53,20 +53,20 @@ msgstr "Невыразнае слова" msgid "Automatic" msgstr "Аўтаматычна" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "назва" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "супадзенне" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "алгарытм супастаўлення" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "без уліку рэгістра" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "парадак" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Апрацоўваць толькі дакументы, якія цалкам супадаюць з імем файла (калі яно пазначана). Маскі, напрыклад *.pdf ці *рахунак*, дазволеныя. Без уліку рэгістра." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "прызначыць гэты тэг" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "прызначыць гэты тып дакумента" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "прызначыць гэтага карэспандэнта" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "прызначыць гэты тэг" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "прызначыць гэты тып дакумента" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "прызначыць гэтага карэспандэнта" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "парадак" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Няправільны рэгулярны выраз: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Няправільны колер." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Тып файла %(type)s не падтрымліваецца" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Выяўлена няправільная зменная." @@ -854,135 +910,286 @@ msgstr "" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Англійская (ЗША)" - -#: paperless/settings.py:587 -msgid "Arabic" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Беларуская" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" +#: paperless/models.py:28 +msgid "pdfa-2" msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Чэшская" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Дацкая" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Нямецкая" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:29 +msgid "pdfa-3" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Англійская (Вялікабрытанія)" - -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Іспанская" - -#: paperless/settings.py:598 -msgid "Finnish" +#: paperless/models.py:38 +msgid "skip" msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Французская" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Італьянская" +msgid "English (US)" +msgstr "Англійская (ЗША)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Люксембургская" +msgid "Arabic" +msgstr "" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" -msgstr "Нідэрландская" +msgid "Belarusian" +msgstr "Беларуская" #: paperless/settings.py:605 -msgid "Polish" -msgstr "Польская" +msgid "Bulgarian" +msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" -msgstr "Партугальская (Бразілія)" +msgid "Catalan" +msgstr "" #: paperless/settings.py:607 -msgid "Portuguese" -msgstr "Партугальская" +msgid "Czech" +msgstr "Чэшская" #: paperless/settings.py:608 -msgid "Romanian" -msgstr "Румынская" +msgid "Danish" +msgstr "Дацкая" #: paperless/settings.py:609 -msgid "Russian" -msgstr "Руская" +msgid "German" +msgstr "Нямецкая" #: paperless/settings.py:610 -msgid "Slovak" +msgid "Greek" msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" -msgstr "Славенская" +msgid "English (GB)" +msgstr "Англійская (Вялікабрытанія)" #: paperless/settings.py:612 -msgid "Serbian" -msgstr "Сербская" +msgid "Spanish" +msgstr "Іспанская" #: paperless/settings.py:613 -msgid "Swedish" -msgstr "Шведская" +msgid "Finnish" +msgstr "" #: paperless/settings.py:614 -msgid "Turkish" -msgstr "Турэцкая" +msgid "French" +msgstr "Французская" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "Італьянская" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Люксембургская" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "Нідэрландская" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "Польская" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "Партугальская (Бразілія)" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "Партугальская" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "Румынская" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "Руская" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "Славенская" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "Сербская" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "Шведская" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "Турэцкая" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Кітайская спрошчаная" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Адміністраванне Paperless-ngx" diff --git a/src/locale/bg_BG/LC_MESSAGES/django.po b/src/locale/bg_BG/LC_MESSAGES/django.po index 02659580c..70ef86fb2 100644 --- a/src/locale/bg_BG/LC_MESSAGES/django.po +++ b/src/locale/bg_BG/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-25 12:09\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -25,27 +25,27 @@ msgstr "Документи" msgid "owner" msgstr "собственик" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Няма" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Всяка дума" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Всички думи" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Точно съвпадение" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Регулярен израз" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Неясна дума" @@ -53,20 +53,20 @@ msgstr "Неясна дума" msgid "Automatic" msgstr "Автоматично" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "име" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "съвпадение" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "алгоритъм за съвпадение" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "без чувствителност към големината на буквите" @@ -611,113 +611,169 @@ msgstr "инстанция на персонализирано поле" msgid "custom field instances" msgstr "инстанции на персонализирани полета" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Папка за консумация" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Качване на API" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Извличане на поща" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "ред" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "филтриране на път" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Да се консумират само документи с път, който съответства на този, ако е зададен. Позволени са заместващи символи, посочени като *. Нечувствителен към големината на буквите." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "филтриране по файлово име" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Да се консумират само документи, които изцяло съответстват на това файлово име, ако е посочено. Разрешени са заместващи символи като *.pdf или *invoice*. Нечувствителност към големи и малки букви." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "филтриране на документи по това правило за поща" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "задаване на заглавие" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Задайте заглавие на документа, може да включва някои заместители, вижте документацията." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "задайте този етикет" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "задайте този тип документ" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "задайте този кореспондент" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "задайте този път за хранилище" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "задайте този собственик" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "предоставяне на права за преглед на тези потребители" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "предоставяне на права за преглед на тези групи" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "предоставяне на права за промяна на тези потребители" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "предоставяне на права за промяна на тези групи" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "присвояване на тези персонализирани полета" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "шаблон за консумация" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "шаблони за консумация" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "ред" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Невалиден регулярен израз: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Невалиден цвят." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Файловия тип %(type)s не се поддържа" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Засечена е невалидна променлива." @@ -854,135 +910,286 @@ msgstr "Имейл" msgid "Send me instructions!" msgstr "Изпрати ми указания!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:38 +msgid "skip" +msgstr "" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Английски (САЩ)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Арабски" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Африканс" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Беларуски" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Български" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Каталунски" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Чешки" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Датски" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Немски" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Гръцки" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Английски (Великобритания)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Испански" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Финландски" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Френски" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Унгарски" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Италиански" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Люксембургски" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Норвежки" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Холандски" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Полски" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Португалски (Бразилия)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Португалски" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Румънски" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Руски" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Словашки" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Словенски" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Сръбски" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Шведски" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Турски" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Украински" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Китайски опростен" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx администрация" diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index 3a9e4db0b..0f22e66f6 100644 --- a/src/locale/ca_ES/LC_MESSAGES/django.po +++ b/src/locale/ca_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-20 12:08\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" @@ -25,27 +25,27 @@ msgstr "documents" msgid "owner" msgstr "propietari" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Cap" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Qualsevol paraula" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Totes paraules" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Coincidència exacte" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Expressió Regular" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Paraula difusa" @@ -53,20 +53,20 @@ msgstr "Paraula difusa" msgid "Automatic" msgstr "Automàtic" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "nom" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "coincidència" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algoritme coincident" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "no distingeix entre majúscules i minúscules" @@ -611,113 +611,169 @@ msgstr "instància de camp personalitzat" msgid "custom field instances" msgstr "instàncies de camps personalitzats" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "Començada Consumpció" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "Document Afegit" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "Document Actualitzat" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Directori 'Condumir'" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Api Pujada" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Recollida Correu" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "ordena" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "Tipus d'activador de Workflow" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "filtra camins" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Consumeix documents amb la ruta que coincideixi si està especificada. Wilcards especificats amb * estan permessos, no sensitiu." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "filtra nom arxiu" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." 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." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "filtra documents d'aquesta regla de correu" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "té aquestes etiquete(s)" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "té aquest tipus de document" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "té aquest corresponsal" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "Assignació" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "assigna títol" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Assigna un títol de document, pot incloure alguns marcadors de posició, vegeu la documentació." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "assigna aquesta etiqueta" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "assigna aquest tipus de document" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "assigna aquest corresponsal" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "assigna aquesta ruta emmagatzematge" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "assigna aquest propietari" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "dona permissos visualització a aquests usuaris" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "dóna permissos de visionat a aquests grups" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "dóna permissos d'edició a aquests usuaris" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "dóna permissos d'edició a aquests grups" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "assigna aquests camps personalitzats" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "plantilla consumició" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "plantilles consumicions" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "ordena" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "disparadors" + +#: documents/models.py:1114 +msgid "actions" +msgstr "accions" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "habilitat" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expressió regular invàlida: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Color Invàlid." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Tipus arxiu %(type)s no suportat" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Variable detectada invàlida." @@ -854,135 +910,286 @@ msgstr "Email" msgid "Send me instructions!" msgstr "Enviar instruccions" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "No es pot analitzar l'URI {value}, falta l'esquema" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "No es pot analitzar l'URI {value}, falta la ubicació o el camí de la xarxa" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "No es pot analitzar l'URI {value}," + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "pdf" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "pdfa" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "pdfa-1" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "pdfa-2" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "pdfa-3" + +#: paperless/models.py:38 +msgid "skip" +msgstr "skip" + +#: paperless/models.py:39 +msgid "redo" +msgstr "redo" + +#: paperless/models.py:40 +msgid "force" +msgstr "forçar" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "mai" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "sempre" + +#: paperless/models.py:59 +msgid "clean" +msgstr "neteja" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "cap" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "RGB" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "Gris" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "CMYK" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "Estableix tipus de sortida PDF" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "OCR des de pàgina 1 fins aquest valor" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "Feu OCR utilitzant aquests idiomes" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "Estableix el mode OCR" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "Habilita la rotació de pàgines" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "Estableix el llindar de rotació de pàgines" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "Estableix la mida màxima de la imatge per a la descompressió" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "configuració de l'aplicació paperless" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "English (US)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Àrab" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Africà" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Bielorús" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Búlgar" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Català" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Txec" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Danès" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Alemany" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Grec" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Anglès (GB)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Espanyol" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Finès" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Francès" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Hongarès" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Italià" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Luxemburguès" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Noruec" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Holandès" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Polac" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portuguès (BZ)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portuguès" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Romanès" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Rus" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Eslovac" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Eslovè" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Serbi" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Suec" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Turc" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ucranià" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Xinès Simplificat" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Administració Paperless-ngx" diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po index 4143bcbf7..86f2af843 100644 --- a/src/locale/cs_CZ/LC_MESSAGES/django.po +++ b/src/locale/cs_CZ/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -25,27 +25,27 @@ msgstr "Dokumenty" msgid "owner" msgstr "vlastník" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Žádný" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Jakékoliv slovo" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Všechna slova" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Přesná shoda" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Regulární výraz" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Fuzzy slovo" @@ -53,20 +53,20 @@ msgstr "Fuzzy slovo" msgid "Automatic" msgstr "Automatický" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "název" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "shoda" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algoritmus pro shodu" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "je ignorováno" @@ -409,7 +409,7 @@ msgstr "" #: documents/models.py:454 msgid "owner is" -msgstr "" +msgstr "vlastník je" #: documents/models.py:455 msgid "has owner in" @@ -529,11 +529,11 @@ msgstr "uživatel" #: documents/models.py:681 msgid "note" -msgstr "" +msgstr "poznámka" #: documents/models.py:682 msgid "notes" -msgstr "" +msgstr "poznámky" #: documents/models.py:690 msgid "Archive" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "pořadí" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Konzumovat jen dokumenty které přesně odpovídají tomuto názvu souboru pokud specifikováno. Zástupné znaky jako *.pdf nebo *invoice* jsou povoleny. Nezáleží na velikosti písmen." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "přiřadit tento tag" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "přiřadit tento typ dokumentu" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "přiřadit tohoto korespondenta" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "přiřadit tento tag" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "přiřadit tento typ dokumentu" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "přiřadit tohoto korespondenta" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "pořadí" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Neplatný regulární výraz: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Neplatná barva." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Typ souboru %(type)s není podporován" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Zjištěna neplatná proměnná." @@ -854,135 +910,286 @@ msgstr "Email" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Angličtina (US)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Arabština" - -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Běloruština" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Čeština" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Dánština" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Němčina" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:28 +msgid "pdfa-2" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Angličtina (GB)" - -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Španělština" - -#: paperless/settings.py:598 -msgid "Finnish" +#: paperless/models.py:29 +msgid "pdfa-3" msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Francouzština" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Italština" +msgid "English (US)" +msgstr "Angličtina (US)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Lucemburština" +msgid "Arabic" +msgstr "Arabština" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" -msgstr "Holandština" +msgid "Belarusian" +msgstr "Běloruština" #: paperless/settings.py:605 -msgid "Polish" -msgstr "Polština" +msgid "Bulgarian" +msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" -msgstr "Portugalština (Brazílie)" +msgid "Catalan" +msgstr "" #: paperless/settings.py:607 -msgid "Portuguese" -msgstr "Portugalština" +msgid "Czech" +msgstr "Čeština" #: paperless/settings.py:608 -msgid "Romanian" -msgstr "Rumunština" +msgid "Danish" +msgstr "Dánština" #: paperless/settings.py:609 -msgid "Russian" -msgstr "Ruština" +msgid "German" +msgstr "Němčina" #: paperless/settings.py:610 -msgid "Slovak" +msgid "Greek" msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" -msgstr "Slovinština" +msgid "English (GB)" +msgstr "Angličtina (GB)" #: paperless/settings.py:612 -msgid "Serbian" -msgstr "Srbština" +msgid "Spanish" +msgstr "Španělština" #: paperless/settings.py:613 -msgid "Swedish" -msgstr "Švédština" +msgid "Finnish" +msgstr "" #: paperless/settings.py:614 -msgid "Turkish" -msgstr "Turečtina" +msgid "French" +msgstr "Francouzština" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "Italština" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Lucemburština" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "Holandština" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "Polština" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "Portugalština (Brazílie)" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "Portugalština" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "Rumunština" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "Ruština" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "Slovinština" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "Srbština" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "Švédština" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "Turečtina" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Čínština (zjednodušená)" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Správa Paperless-ngx" diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po index 6f75ed973..3ae5379db 100644 --- a/src/locale/da_DK/LC_MESSAGES/django.po +++ b/src/locale/da_DK/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -25,27 +25,27 @@ msgstr "Dokumenter" msgid "owner" msgstr "" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Ethvert ord" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Alle ord" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Præcis match" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Regulær udtryk" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Tilnærmet ord" @@ -53,20 +53,20 @@ msgstr "Tilnærmet ord" msgid "Automatic" msgstr "Automatisk" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "navn" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "match" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "matching algoritme" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "er usensitiv" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "rækkefølge" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Bearbejd kun dokumenter, der helt matcher dette filnavn, hvis angivet. Wildcards såsom *.pdf eller *faktura * er tilladt." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "tildel denne etiket" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "tildel denne dokumenttype" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "tildel denne korrespondent" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "tildel denne etiket" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "tildel denne dokumenttype" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "tildel denne korrespondent" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "rækkefølge" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ugyldigt regulært udtryk: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Ugyldig farve." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Filtype %(type)s understøttes ikke" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "" @@ -854,135 +910,286 @@ msgstr "" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Engelsk (USA)" - -#: paperless/settings.py:587 -msgid "Arabic" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:28 +msgid "pdfa-2" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" +#: paperless/models.py:29 +msgid "pdfa-3" msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Tjekkisk" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Dansk" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Tysk" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:38 +msgid "skip" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Engelsk (GB)" - -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Spansk" - -#: paperless/settings.py:598 -msgid "Finnish" +#: paperless/models.py:39 +msgid "redo" msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Fransk" +#: paperless/models.py:40 +msgid "force" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Italiensk" +msgid "English (US)" +msgstr "Engelsk (USA)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Luxemburgsk" +msgid "Arabic" +msgstr "" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" -msgstr "Hollandsk" +msgid "Belarusian" +msgstr "" #: paperless/settings.py:605 -msgid "Polish" -msgstr "Polsk" +msgid "Bulgarian" +msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" -msgstr "Portugisisk (Brasilien)" +msgid "Catalan" +msgstr "" #: paperless/settings.py:607 -msgid "Portuguese" -msgstr "Portugisisk" +msgid "Czech" +msgstr "Tjekkisk" #: paperless/settings.py:608 -msgid "Romanian" -msgstr "Romansk" +msgid "Danish" +msgstr "Dansk" #: paperless/settings.py:609 -msgid "Russian" -msgstr "Russisk" +msgid "German" +msgstr "Tysk" #: paperless/settings.py:610 -msgid "Slovak" +msgid "Greek" msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" -msgstr "" +msgid "English (GB)" +msgstr "Engelsk (GB)" #: paperless/settings.py:612 -msgid "Serbian" -msgstr "" +msgid "Spanish" +msgstr "Spansk" #: paperless/settings.py:613 -msgid "Swedish" -msgstr "Svensk" - -#: paperless/settings.py:614 -msgid "Turkish" +msgid "Finnish" msgstr "" +#: paperless/settings.py:614 +msgid "French" +msgstr "Fransk" + #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "Italiensk" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Luxemburgsk" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "Hollandsk" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "Polsk" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "Portugisisk (Brasilien)" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "Portugisisk" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "Romansk" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "Russisk" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "Svensk" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administration" diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index 956da74c9..fa67ecfaa 100644 --- a/src/locale/de_DE/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-23 00:22\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -25,27 +25,27 @@ msgstr "Dokumente" msgid "owner" msgstr "Eigentümer" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Keiner" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Irgendein Wort" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Alle Wörter" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Exakte Übereinstimmung" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Regulärer Ausdruck" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Ungenaues Wort" @@ -53,20 +53,20 @@ msgstr "Ungenaues Wort" msgid "Automatic" msgstr "Automatisch" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "Name" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "Zuweisungsmuster" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "Zuweisungsalgorithmus" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "Groß-/Kleinschreibung irrelevant" @@ -611,113 +611,169 @@ msgstr "Benutzerdefinierte Feld-Instanz" msgid "custom field instances" msgstr "Benutzerdefinierte Feld-Instanzen" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "Dokument hinzugefügt" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "Dokument aktualisiert" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Importordner" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "API-Upload" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "E-Mail-Abruf" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "Reihenfolge" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "Pfad filtern" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Nur Dokumente, die mit diesem Pfad (falls angegeben) übereinstimmen, verarbeiten. Platzhalter wie * sind erlaubt. Groß- und Kleinschreibung wird nicht beachtet." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "Dateinamen filtern" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Nur Dokumente, die vollständig mit diesem Dateinamen (falls angegeben) übereinstimmen, verarbeiten. Platzhalter wie *.pdf oder *rechnung* sind erlaubt. Groß- und Kleinschreibung wird nicht beachtet." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "Dokumente aus dieser E-Mail-Regel filtern" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "Zuordnung" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "Titel zuweisen" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Weisen Sie einen Dokumententitel zu. Dieser kann Platzhalter beinhalten, siehe Dokumentation." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "Dieses Tag zuweisen" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "Diesen Dokumenttyp zuweisen" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "Diesen Korrespondenten zuweisen" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "Diesen Speicherpfad zuweisen" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "Diesen Eigentümer zuordnen" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "Diesen Benutzern Anzeigeberechtigungen erteilen" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "Diesen Gruppen Anzeigeberechtigungen erteilen" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "Diesen Benutzern Bearbeitungsberechtigungen erteilen" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "Diesen Gruppen Bearbeitungsberechtigungen erteilen" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "Diese benutzerdefinierten Felder zuweisen" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "Verarbeitungsvorlage" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "Verarbeitungsvorlagen" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "Reihenfolge" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "aktiviert" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ungültiger regulärer Ausdruck: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Ungültige Farbe." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Dateityp %(type)s nicht unterstützt" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Ungültige Variable erkannt." @@ -854,135 +910,286 @@ msgstr "E-Mail" msgid "Send me instructions!" msgstr "Anweisungen senden!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:38 +msgid "skip" +msgstr "" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "erzwingen" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "nie" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "mit_Text" + +#: paperless/models.py:51 +msgid "always" +msgstr "immer" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "Grau" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "CMYK" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "Legt den Ausgabe-PDF-Typ fest" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "Legt den OCR-Modus fest" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Englisch (US)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Arabisch" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Afrikanisch" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Belarussisch" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Bulgarisch" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Katalanisch" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Tschechisch" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Dänisch" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Deutsch" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Griechisch" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Englisch (UK)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Spanisch" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Finnisch" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Französisch" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Ungarisch" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Italienisch" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Luxemburgisch" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norwegisch" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Niederländisch" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Polnisch" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portugiesisch (Brasilien)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portugiesisch" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Rumänisch" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Russisch" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Slowakisch" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Slowenisch" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Serbisch" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Schwedisch" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Türkisch" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukrainisch" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Chinesisch (vereinfacht)" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx Administration" diff --git a/src/locale/el_GR/LC_MESSAGES/django.po b/src/locale/el_GR/LC_MESSAGES/django.po index d2dcb6043..7e1ad097b 100644 --- a/src/locale/el_GR/LC_MESSAGES/django.po +++ b/src/locale/el_GR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -25,27 +25,27 @@ msgstr "Έγγραφα" msgid "owner" msgstr "ιδιοκτήτης" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Τίποτα" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Οποιαδήποτε λέξη" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Όλες οι λέξεις" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Ακριβής ταύτιση" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Κανονική έκφραση" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Fuzzy word" @@ -53,20 +53,20 @@ msgstr "Fuzzy word" msgid "Automatic" msgstr "Αυτόματο" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "όνομα" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "αντιστοίχιση" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "αλγόριθμος αντιστοίχισης" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "χωρίς διάκριση πεζών - κεφαλαίων" @@ -611,113 +611,169 @@ msgstr "στιγμιότυπο προσαρμοσμένου πεδίου" msgid "custom field instances" msgstr "στιγμιότυπα προσαρμοσμένων πεδίων" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Φάκελος Κατανάλωσης" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Μεταφόρτωση μέσω API" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Λήψη Αλληλογραφίας" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "σειρά" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "διαδρομή φίλτρου" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Μόνο κατανάλωση εγγράφων με μια διαδρομή που ταιριάζει με αυτό αν έχει καθοριστεί. Επιτρέπεται η χρήση μπαλαντέρ που ορίζεται ως *. Χωρίς διάκριση πεζών-κεφαλαίων." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "φιλτράρισμα ονόματος αρχείου" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Μόνο κατανάλωση αρχείων που ταιριάζουν απόλυτα με το όνομα αρχείου, εάν καθοριστεί. Επιτρέπεται η χρήση μπαλαντέρ όπως *.pdf ή *invoice*. Δεν υπάρχει έλεγχος πεζών/κεφαλαίων." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "φιλτράρισμα εγγράφων από αυτόν τον κανόνα αλληλογραφίας" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "ανάθεση τίτλου" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Η ανάθεση τίτλου εγγράφου μπορεί να περιέχει μερικά placeholders, δείτε την τεκμηρίωση." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "ανάθεση αυτής της ετικέτας" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "ανάθεση αυτού του τύπου εγγράφου" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "ανάθεση αυτού του ανταποκριτή" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "ανάθεση αυτής της διαδρομής αποθήκευσης" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "ανάθεση αυτού του ιδιοκτήτη" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "εκχώρηση δικαιωμάτων προβολής σε αυτούς τους χρήστες" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "εκχώρηση δικαιωμάτων προβολής σε αυτές τις ομάδες" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "εκχώρηση δικαιωμάτων μεταβολής σε αυτές τις ομάδες" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "εκχώρηση δικαιωμάτων μεταβολής σε αυτές τις ομάδες" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "πρότυπο κατανάλωσης" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "πρότυπα κατανάλωσης" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "σειρά" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Άκυρη έκφραση: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Άκυρο χρώμα." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Ο τύπος αρχείου %(type)s δεν υποστηρίζεται" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Εντοπίστηκε μη έγκυρη μεταβλητή." @@ -854,135 +910,286 @@ msgstr "E-mail" msgid "Send me instructions!" msgstr "Αποστολή Οδηγιών!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:38 +msgid "skip" +msgstr "" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Αγγλικά (ΗΠΑ)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Αραβικά" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Αφρικανικά" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Λευκορωσικά" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Βουλγαρικά" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Καταλανικά" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Τσέχικα" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Δανέζικα" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Γερμανικά" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Ελληνικά" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Αγγλικά (Ηνωμένο Βασίλειο)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Ισπανικά" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Φινλανδικά" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Γαλλικά" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Ουγγρικά" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Ιταλικά" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Λουξεμβουργικά" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Νορβηγικά" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Ολλανδικά" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Πολωνικά" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Πορτογαλικά (Βραζιλίας)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Πορτογαλικά" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Ρουμάνικα" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Ρωσικά" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Σλοβακικά" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Σλοβενικά" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Σερβικά" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Σουηδικά" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Τούρκικα" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ουκρανικά" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Κινέζικα Απλοποιημένα" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Διαχείριση Paperless-ngx" diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po index dd3b80b54..ba62a597b 100644 --- a/src/locale/es_ES/LC_MESSAGES/django.po +++ b/src/locale/es_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-21 12:09\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -25,27 +25,27 @@ msgstr "Documentos" msgid "owner" msgstr "propietario" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Nada" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Cualquier palabra" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Todas las palabras" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Coincidencia exacta" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Expresión regular" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Palabra borrosa" @@ -53,20 +53,20 @@ msgstr "Palabra borrosa" msgid "Automatic" msgstr "Automático" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "nombre" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "coincidencia" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "Algoritmo de coincidencia" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "es insensible" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Consumir carpeta" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Carga de Api" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Buscar correo" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "orden" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "filtrar ruta" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Sólo consumir documentos con una ruta que coincida con esta si se especifica. Los comodines especificados como * están permitidos. No permiten mayúsculas." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "filtrar nombre del archivo" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Sólo consumirá documentos que coincidan completamente con este nombre de archivo si se especifica. Se permiten comodines como *.pdf o *factura*. No diferencia mayúsculas." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "filtrar documentos de esta regla de correo" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "asignar título" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Asignar título al documento, puede incluir marcadores de posición, vea documentación." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "asignar esta etiqueta" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "asignar este tipo de documento" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "asignar este interlocutor" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "asignar esta ruta de almacenamiento" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "asignar dueño" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "conceder permisos de vista a estos usuarios" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "conceder permisos de vista a estos grupos" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "conceder permisos de cambio a estos usuarios" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "conceder permisos de cambio a estos grupos" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "plantilla de consumo" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "plantillas de consumo" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "orden" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expresión irregular inválida: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Color inválido." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de fichero %(type)s no suportado" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Variable inválida." @@ -854,135 +910,286 @@ msgstr "E-mail" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:38 +msgid "skip" +msgstr "" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Inglés (US)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Árabe" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Africano" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Bielorruso" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Búlgaro" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Catalán" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Checo" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Danés" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Alemán" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Griego" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Inglés (Gran Bretaña)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Español" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Finlandés" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Francés" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Húngaro" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Luxemburgués" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Noruego" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Alemán" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Polaco" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portugués (Brasil)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portugués" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Rumano" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Ruso" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Eslovaco" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Esloveno" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Serbio" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Sueco" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Turco" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ucraniano" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Chino simplificado" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Administración de Paperless-ngx" diff --git a/src/locale/fi_FI/LC_MESSAGES/django.po b/src/locale/fi_FI/LC_MESSAGES/django.po index 78629e230..11e00812a 100644 --- a/src/locale/fi_FI/LC_MESSAGES/django.po +++ b/src/locale/fi_FI/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -25,27 +25,27 @@ msgstr "Asiakirjat" msgid "owner" msgstr "omistaja" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Ei mitään" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Mikä tahansa sana" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Kaikki sanat" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Tarkka osuma" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Säännöllinen lauseke (regex)" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Sumea sana" @@ -53,20 +53,20 @@ msgstr "Sumea sana" msgid "Automatic" msgstr "Automaattinen" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "nimi" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "osuma" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "tunnistusalgoritmi" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "ei ole herkkä" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "API-lähetys" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "järjestys" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Tuo vain dokumentit jotka täsmäävät täysin tiedostonimen suhteen. Jokerimerkit kuten *.pdf tai *lasku* ovat sallittuja. Kirjainkoko ei merkitse." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "määritä tämä tunniste" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "määritä tämä asiakirjatyyppi" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "määritä tämä kirjeenvaihtaja" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "määritä tämä tunniste" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "määritä tämä asiakirjatyyppi" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "määritä tämä kirjeenvaihtaja" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "järjestys" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Virheellinen regex-lauseke: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Virheellinen väri." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Tiedostotyyppiä %(type)s ei tueta" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Virheellinen muuttuja havaittu." @@ -854,135 +910,286 @@ msgstr "Sähköposti" msgid "Send me instructions!" msgstr "Lähettäkää ohjeet!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Englanti (US)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Arabialainen" - -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "valkovenäjä" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "Katalaani" +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Tšekki" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Tanska" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:594 -msgid "German" -msgstr "Saksa" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:595 -msgid "Greek" -msgstr "Kreikka" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Englanti (US)" +#: paperless/models.py:40 +msgid "force" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Espanja" +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "Suomi" +#: paperless/models.py:49 +msgid "never" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Ranska" +#: paperless/models.py:50 +msgid "with_text" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 +msgid "English (US)" +msgstr "Englanti (US)" + +#: paperless/settings.py:602 +msgid "Arabic" +msgstr "Arabialainen" + +#: paperless/settings.py:603 +msgid "Afrikaans" +msgstr "" + +#: paperless/settings.py:604 +msgid "Belarusian" +msgstr "valkovenäjä" + +#: paperless/settings.py:605 +msgid "Bulgarian" +msgstr "" + +#: paperless/settings.py:606 +msgid "Catalan" +msgstr "Katalaani" + +#: paperless/settings.py:607 +msgid "Czech" +msgstr "Tšekki" + +#: paperless/settings.py:608 +msgid "Danish" +msgstr "Tanska" + +#: paperless/settings.py:609 +msgid "German" +msgstr "Saksa" + +#: paperless/settings.py:610 +msgid "Greek" +msgstr "Kreikka" + +#: paperless/settings.py:611 +msgid "English (GB)" +msgstr "Englanti (US)" + +#: paperless/settings.py:612 +msgid "Spanish" +msgstr "Espanja" + +#: paperless/settings.py:613 +msgid "Finnish" +msgstr "Suomi" + +#: paperless/settings.py:614 +msgid "French" +msgstr "Ranska" + +#: paperless/settings.py:615 +msgid "Hungarian" +msgstr "" + +#: paperless/settings.py:616 msgid "Italian" msgstr "Italia" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Luxemburg" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norja" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Hollanti" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "puola" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "portugali (Brasilia)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "portugali" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "romania" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "venäjä" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Slovakia" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Slovenia" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Serbia" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "ruotsi" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Turkki" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukraina" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Kiina (yksinkertaistettu)" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx:n ylläpito" diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index cf9a6d64e..1b483607c 100644 --- a/src/locale/fr_FR/LC_MESSAGES/django.po +++ b/src/locale/fr_FR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-27 12:08\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -25,27 +25,27 @@ msgstr "Documents" msgid "owner" msgstr "propriétaire" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Aucun élément" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Un des mots" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Tous les mots" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Concordance exacte" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Expression régulière" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Mot approximatif" @@ -53,20 +53,20 @@ msgstr "Mot approximatif" msgid "Automatic" msgstr "Automatique" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "nom" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "rapprochement" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algorithme de rapprochement" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "est insensible à la casse" @@ -421,15 +421,15 @@ msgstr "n'a pas de propriétaire" #: documents/models.py:457 msgid "does not have owner in" -msgstr "n'a pas de propriétaire" +msgstr "n'a pas de propriétaire dans" #: documents/models.py:458 msgid "has custom field value" -msgstr "" +msgstr "a valeur d'un champ personnalisé" #: documents/models.py:459 msgid "is shared by me" -msgstr "" +msgstr "est partagé par moi" #: documents/models.py:469 msgid "rule type" @@ -589,7 +589,7 @@ msgstr "Monétaire" #: documents/models.py:761 msgid "Document Link" -msgstr "Lien du Document" +msgstr "Lien du document" #: documents/models.py:773 msgid "data type" @@ -611,113 +611,169 @@ msgstr "instance de champs personnalisés" msgid "custom field instances" msgstr "instances de champs personnalisés" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Dossier d'Importation" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Téléverser l'Api" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Récupération du courriel" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "ordre" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "filtrer le chemin" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "N'importer que les documents dont le chemin correspond à celui-ci s'il est spécifié. Les caractères spécifiés par * sont autorisés. Insensible à la casse." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "filtrer le nom de fichier" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Ne traiter que les documents correspondant intégralement à ce nom de fichier s'il est spécifié. Les jokers tels que *.pdf ou *facture* sont autorisés. La casse n'est pas prise en compte." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "filtrer les documents à partir de cette règle de messagerie" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "attribuer un titre" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Assigner un titre de document, peut inclure certains marqueurs, voir la documentation." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "affecter cette étiquette" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "affecter ce type de document" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "affecter ce correspondant" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "assigner ce chemin de stockage" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "assigner ce propriétaire" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "accorder des permissions de vue à ces utilisateurs" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "accorder des droits de vue à ces groupes" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "accorder des droits de modification à ces utilisateurs" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "accorder des droits de modification à ces groupes" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" +msgstr "assigner ces champs personnalisés" + +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "modèle d'importation" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "modèles d'importation" +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "ordre" -#: documents/serialisers.py:105 +#: documents/models.py:1107 +msgid "triggers" +msgstr "déclencheurs" + +#: documents/models.py:1114 +msgid "actions" +msgstr "actions" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "activé" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expression régulière incorrecte : %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Couleur incorrecte." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Type de fichier %(type)s non pris en charge" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Variable invalide détectée." @@ -854,135 +910,286 @@ msgstr "Adresse électronique" msgid "Send me instructions!" msgstr "Envoyez-moi les instructions !" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "Impossible d'analyser l'URI {value}, schéma manquant" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "Impossible d'analyser l'URI {value}, emplacement réseau ou chemin manquant" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "Impossible d'analyser l'URI {value}" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "pdf" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "pdfa" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "pdfa-1" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "pdfa-2" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "pdfa-3" + +#: paperless/models.py:38 +msgid "skip" +msgstr "ignorer" + +#: paperless/models.py:39 +msgid "redo" +msgstr "rétablir" + +#: paperless/models.py:40 +msgid "force" +msgstr "forcer" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "jamais" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "toujours" + +#: paperless/models.py:59 +msgid "clean" +msgstr "clean" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "aucun" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "RGB" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "Définit le type de PDF de sortie" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "Active la rotation des pages" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "Définit le seuil de rotation des pages" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Anglais (US)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Arabe" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Afrikaans" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Biélorusse" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Bulgare" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Catalan" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Tchèque" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Danois" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Allemand" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Grec" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Anglais (GB)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Espagnol" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Finnois" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Français" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Hongrois" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Italien" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Luxembourgeois" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norvégien" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Néerlandais" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Polonais" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portugais (Brésil)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portugais" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Roumain" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Russe" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Solvaque" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Slovène" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Serbe" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Suédois" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Turc" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukrainien" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Chinois simplifié" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Administration de Paperless-ngx" @@ -1180,15 +1387,15 @@ msgstr "filtrer le corps du message" #: paperless_mail/models.py:143 msgid "filter attachment filename inclusive" -msgstr "" +msgstr "filtrer le nom de fichier de la pièce jointe de manière inclusive" #: paperless_mail/models.py:155 msgid "filter attachment filename exclusive" -msgstr "" +msgstr "filtrer le nom de fichier de la pièce jointe de manière exclusive" #: paperless_mail/models.py:160 msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." -msgstr "" +msgstr "N'importer que les documents qui correspondent intégralement à ce nom de fichier s'il est spécifié. Les caractères tels que *.pdf ou *facture* sont autorisés. La casse n'est pas prise en compte." #: paperless_mail/models.py:167 msgid "maximum age" diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po index 2811293a5..98b67b637 100644 --- a/src/locale/he_IL/LC_MESSAGES/django.po +++ b/src/locale/he_IL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-25 12:09\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -25,27 +25,27 @@ msgstr "מסמכים" msgid "owner" msgstr "בעלים" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "ללא" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "מילה כלשהי" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "כל המילים" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "התאמה מדויקת" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "ביטוי רגולרי" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "מילה מעורפלת" @@ -53,20 +53,20 @@ msgstr "מילה מעורפלת" msgid "Automatic" msgstr "אוטומטי" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "שם" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "התאמה" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "אלגוריתם התאמה" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "אינו תלוי רישיות" @@ -611,113 +611,169 @@ msgstr "שדה מותאם אישית" msgid "custom field instances" msgstr "שדות מותאמים אישית" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "עיבוד תיקיה" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "העלאה באמצעות API" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "הורד מייל" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "סדר" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "נתיב מסנן" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "עבד רק קבצים המצוים בנתיב זה אם מוגדר. " -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "סנן לפי שם קובץ" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "קבל רק מסמכים שתואמים לחלוטין את שם הקובץ הזה אם צוין. תווים כלליים כגון pdf.* או *חשבונית* מותרים. חסר רגישות תווים גדולים/קטנים (אנגלית)." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "סנן מסמכים לפי כלל המייל הזה" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "הקצה כותרת" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "הקצה כותרת למסמך, תוכל להשתמש במראה מקומות. בדוק כיצד במדריך למשתמש" -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "שייך תגית זו" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "שייך סוג מסמך זה" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "שייך מכותב זה" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "הקצה נתיב אחסון זה" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "הקצה בעלים זה" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "אפשר זכויות צפיה בקובץ למשתמשים אלו" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "אפשר זכויות צפיה בקובץ לקבוצות אלו" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "אפשר זכויות שינוי הגדרות צפיה בקובץ למשתמשים אלו" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "אפשר זכויות שינוי הגדרות צפיה בקובץ לקבוצות אלו" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "הקצה שדות מותאמים אישית אלו " -#: documents/models.py:1025 -msgid "consumption template" -msgstr "תבנית עיבוד" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "תבניות עיבוד" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "סדר" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "ביטוי רגולרי בלתי חוקי: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "צבע לא חוקי." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "סוג קובץ %(type)s לא נתמך" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "משתנה לא חוקי זוהה." @@ -854,135 +910,286 @@ msgstr "דוא\"ל" msgid "Send me instructions!" msgstr "שלח לי את ההוראות!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "ללא נייר" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:38 +msgid "skip" +msgstr "" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "אנגלית (ארה״ב)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "ערבית" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "אפריקאנס" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "בלרוסית" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "בולגרית" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "קטלאנית" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "צ'כית" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "דנית" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "גרמנית" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "יוונית" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "אנגלית (בריטניה)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "ספרדית" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "פינית" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "צרפתית" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "הונגרית" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "איטלקית" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "לוקסמבורגית" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "נורווגית" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "הולנדית" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "פולנית" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "פורטוגלית ברזילאית" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "פורטוגלית" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "רומנית" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "רוסית" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "סלובקית" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "סלובנית" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "סרבית" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "שוודית" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "טורקית" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "אוקראינית" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "סינית מפושטת" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "ניהול Paperless-ngx" diff --git a/src/locale/hr_HR/LC_MESSAGES/django.po b/src/locale/hr_HR/LC_MESSAGES/django.po index 4abbe31ec..d945936d2 100644 --- a/src/locale/hr_HR/LC_MESSAGES/django.po +++ b/src/locale/hr_HR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Croatian\n" "Language: hr_HR\n" @@ -25,27 +25,27 @@ msgstr "Dokumenti" msgid "owner" msgstr "vlasnik" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Ništa" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Bilo koja riječ" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Sve riječi" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Točno podudaranje" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Uobičajeni izraz" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Nejasna riječ" @@ -53,20 +53,20 @@ msgstr "Nejasna riječ" msgid "Automatic" msgstr "Automatski" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "ime" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "podudarati" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algoritam podudaranja" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "ne razlikuje velika i mala slova" @@ -529,7 +529,7 @@ msgstr "korisnik" #: documents/models.py:681 msgid "note" -msgstr "" +msgstr "bilješka" #: documents/models.py:682 msgid "notes" @@ -537,15 +537,15 @@ msgstr "" #: documents/models.py:690 msgid "Archive" -msgstr "" +msgstr "Arhiva" #: documents/models.py:691 msgid "Original" -msgstr "" +msgstr "Izvornik" #: documents/models.py:702 msgid "expiration" -msgstr "" +msgstr "istječe" #: documents/models.py:709 msgid "slug" @@ -553,7 +553,7 @@ msgstr "" #: documents/models.py:741 msgid "share link" -msgstr "" +msgstr "dijeli vezu" #: documents/models.py:742 msgid "share links" @@ -569,7 +569,7 @@ msgstr "" #: documents/models.py:756 msgid "Date" -msgstr "" +msgstr "Datum" #: documents/models.py:757 msgid "Boolean" @@ -581,7 +581,7 @@ msgstr "" #: documents/models.py:759 msgid "Float" -msgstr "" +msgstr "Plutajući" #: documents/models.py:760 msgid "Monetary" @@ -589,11 +589,11 @@ msgstr "" #: documents/models.py:761 msgid "Document Link" -msgstr "" +msgstr "Poveznica dokumenta" #: documents/models.py:773 msgid "data type" -msgstr "" +msgstr "vrsta dokumenta" #: documents/models.py:781 msgid "custom field" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "redoslijed" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Konzumirajte samo dokumente koji u potpunosti odgovaraju ovom nazivu datoteke ako je navedeno. Dopušteni su zamjenski znakovi kao što su *.pdf ili *faktura*. Neosjetljivo je na mala i mala slova." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "dodijeli oznaku" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "dodijeliti ovu vrstu dokumenta" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "dodijelite ovom dopisniku" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "dodijeli oznaku" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "dodijeliti ovu vrstu dokumenta" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "dodijelite ovom dopisniku" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" +msgstr "dodijeliti ova prilagođena polja" + +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "redoslijed" + +#: documents/models.py:1107 +msgid "triggers" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Nevažeći regularni izraz: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Nevažeća boja." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s nije podržana" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Otkrivena je nevaljana vrsta datoteke." @@ -804,15 +860,15 @@ msgstr "" #: documents/templates/registration/password_reset_confirm.html:46 msgid "Passwords did not match or too weak. Try again." -msgstr "" +msgstr "Lozinka nije točna ili je prekratka. Pokušajte ponovo." #: documents/templates/registration/password_reset_confirm.html:49 msgid "New Password" -msgstr "" +msgstr "Nova lozinka" #: documents/templates/registration/password_reset_confirm.html:50 msgid "Confirm Password" -msgstr "" +msgstr "Potvrdi lozinku" #: documents/templates/registration/password_reset_confirm.html:61 msgid "Change my password" @@ -854,135 +910,286 @@ msgstr "" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Engleski (US)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Arapski" - -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Bjeloruski" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Češki" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Danski" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Njemački" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:28 +msgid "pdfa-2" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Engleski (GB)" - -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Španjolski" - -#: paperless/settings.py:598 -msgid "Finnish" +#: paperless/models.py:29 +msgid "pdfa-3" msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Francuski" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Talijanski" +msgid "English (US)" +msgstr "Engleski (US)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Luksemburški" +msgid "Arabic" +msgstr "Arapski" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" -msgstr "Nizozemski" +msgid "Belarusian" +msgstr "Bjeloruski" #: paperless/settings.py:605 -msgid "Polish" -msgstr "Poljski" +msgid "Bulgarian" +msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" -msgstr "Portugalski (Brazil)" +msgid "Catalan" +msgstr "" #: paperless/settings.py:607 -msgid "Portuguese" -msgstr "Portugalski" +msgid "Czech" +msgstr "Češki" #: paperless/settings.py:608 -msgid "Romanian" -msgstr "Rumunjski" +msgid "Danish" +msgstr "Danski" #: paperless/settings.py:609 -msgid "Russian" -msgstr "Ruski" +msgid "German" +msgstr "Njemački" #: paperless/settings.py:610 -msgid "Slovak" +msgid "Greek" msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" -msgstr "Slovenski" +msgid "English (GB)" +msgstr "Engleski (GB)" #: paperless/settings.py:612 -msgid "Serbian" -msgstr "Srpski" +msgid "Spanish" +msgstr "Španjolski" #: paperless/settings.py:613 -msgid "Swedish" -msgstr "Švedski" +msgid "Finnish" +msgstr "" #: paperless/settings.py:614 -msgid "Turkish" -msgstr "Turski" +msgid "French" +msgstr "Francuski" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "Talijanski" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Luksemburški" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "Nizozemski" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "Poljski" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "Portugalski (Brazil)" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "Portugalski" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "Rumunjski" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "Ruski" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "Slovenski" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "Srpski" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "Švedski" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "Turski" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Pojednostavljeni kineski" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administracija" diff --git a/src/locale/hu_HU/LC_MESSAGES/django.po b/src/locale/hu_HU/LC_MESSAGES/django.po index d21fec6d3..c78e33368 100644 --- a/src/locale/hu_HU/LC_MESSAGES/django.po +++ b/src/locale/hu_HU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -25,27 +25,27 @@ msgstr "Dokumentumok" msgid "owner" msgstr "tulajdonos" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Nincs" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Bármilyen szó" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Minden szó" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Pontos egyezés" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Reguláris kifejezés" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Fuzzy szó" @@ -53,20 +53,20 @@ msgstr "Fuzzy szó" msgid "Automatic" msgstr "Automatikus" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "név" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "egyezés" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "egyeztető algoritmus" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "érzéketlen" @@ -611,113 +611,169 @@ msgstr "egyéni mező példány" msgid "custom field instances" msgstr "egyéni mező példányok" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Feldolgozási mappa" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Api feltöltés" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Mail lehívás" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "megrendelés" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "szűrési útvonal" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Csak olyan dokumentumokat dolgoz fel, amelyeknek az elérési útvonala megegyezik ezzel, ha ez meg van adva. A *-gal megadott helyettesítő karakterek engedélyezettek. Nagy- és kisbetűkre nem érzékeny." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "szűrő fájlnév" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Csak olyan dokumentumokat dolgoz fel, amelyek teljes mértékben megfelelnek ennek a fájlnévnek, ha meg van adva. Az olyan helyettesítő karakterek, mint *.pdf vagy *számla* engedélyezettek. Nagy- és kisbetűkre nem érzékeny." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "dokumentumok szűrése ebből a levélszabályból" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "cím hozzárendelése" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "A dokumentum címének hozzárendelése, tartalmazhat néhány helykitöltőt, lásd a dokumentációt." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "rendelje hozzá ezt a jelölőt" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "rendelje hozzá ezt a dokumentumtípust" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "rendelje hozzá ezt a kapcsolattartót" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "rendelje hozzá ezt a tárolási útvonalat" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "rendelje hozzá ezt a tulajdonost" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "adjon megtekintési engedélyeket ezeknek a felhasználóknak" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "nézeti engedélyeket adjon ezeknek a csoportoknak" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "adjon módosítási engedélyeket ezeknek a felhasználóknak" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "adjon módosítási jogosultságokat ezeknek a csoportoknak" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "rendelje hozzá ezeket az egyedi mezőket" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "feldolgozási sablon" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "feldolgozási sablonok" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "megrendelés" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Érvénytelen reguláris kifejezés: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Érvénytelen szín." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Fájltípus %(type)s nem támogatott" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Érvénytelen változót észleltek." @@ -854,135 +910,286 @@ msgstr "E-mail" msgid "Send me instructions!" msgstr "Küldjenek utasításokat!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Papírmentes" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:38 +msgid "skip" +msgstr "" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Angol (US)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Arab" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Afrikai" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Fehérorosz" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Bolgár" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Katalán" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Cseh" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Dán" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Német" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Görög" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Angol (GB)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Spanyol" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Finn" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Francia" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Magyar" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Olasz" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Luxemburgi" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norvég" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Holland" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Lengyel" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portugál (Brazília)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portugál" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Román" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Orosz" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Szlovák" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Szlovén" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Szerb" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Svéd" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Török" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukrán" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Kínai egyszerűsített" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx adminisztráció" diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po index b79fb66e4..4c06590dd 100644 --- a/src/locale/id_ID/LC_MESSAGES/django.po +++ b/src/locale/id_ID/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-26 12:08\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -25,27 +25,27 @@ msgstr "Dokumen" msgid "owner" msgstr "pemilik" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Tidak ada" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Kata apapun" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Semua kata" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Sama persis" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Ekspresi reguler" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Kata samar" @@ -53,20 +53,20 @@ msgstr "Kata samar" msgid "Automatic" msgstr "Otomatis" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "nama" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "cocok" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "mencocokkan algoritma" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "tidak sensitif" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Unggah Menggunakan API" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "urut" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "saring nama berkas" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Hanya gunakan dokumen yang sepenuhnya cocok dengan nama berkas ini jika ditentukan. Wildcard seperti *.pdf atau *faktur* diperbolehkan. Tidak peka huruf besar kecil." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "saring dokumen dari peraturan surel" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "tetapkan label ini" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:989 +msgid "workflow triggers" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" -msgstr "" - -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "tetapkan label ini" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "urut" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ekspresi reguler tidak valid: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Warna tidak valid." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Jenis berkas %(type)s tidak didukung" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Variabel ilegal terdeteksi." @@ -854,135 +910,286 @@ msgstr "Surat elektronik" msgid "Send me instructions!" msgstr "Kirim saya instruksi!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:38 +msgid "skip" +msgstr "" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Inggris (AS)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Arab" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Belarusia" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Bahasa Ceko" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Jerman" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Yunani" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Inggris (GB)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Spanyol" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Prancis" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Hungaria" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Italia" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Luksemburg" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norwegia" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Belanda" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Polandia" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portugis (Brasil)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portugis" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Rumania" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Rusia" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Slovakia" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Slovenia" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Serbia" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Swedia" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Turki" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukraina" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Mandarin Sederhana" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Administrasi Paperless-ngx" diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po index 189e2ac2a..36fb197a8 100644 --- a/src/locale/it_IT/LC_MESSAGES/django.po +++ b/src/locale/it_IT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-28 00:23\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -25,27 +25,27 @@ msgstr "Documenti" msgid "owner" msgstr "proprietario" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Niente" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Qualsiasi parola" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Tutte le parole" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Corrispondenza esatta" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Espressione regolare" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Parole fuzzy" @@ -53,20 +53,20 @@ msgstr "Parole fuzzy" msgid "Automatic" msgstr "Automatico" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "nome" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "corrispondenza" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algoritmo di corrispondenza" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "non distingue maiuscole e minuscole" @@ -611,113 +611,169 @@ msgstr "istanza campo personalizzato" msgid "custom field instances" msgstr "istanze campo personalizzato" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "Documento aggiunto" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "Documento aggiornato" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Cartella di elaborazione" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Upload Api" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Recupero Posta" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "priorità" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "filtro percorso" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Elabora solo i documenti con un percorso che corrisponde a questo, se specificato. I caratteri wildcard come * sono permessi. Ignora differenze tra maiuscole e minuscole." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "filtra nome file" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Elabora i documenti che corrispondono a questo nome. Puoi usare wildcard come *.pdf o *fattura*. Non fa differenza fra maiuscole e minuscole." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "filtra i documenti da questa regola di posta" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "ha questi tag(s)" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "assegna titolo" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Assegna un titolo al documento, può includere alcuni segnaposti, vedi documentazione." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "assegna questo tag" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "assegna questo tipo di documento" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "assegna questo corrispondente" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "assegna questo percorso di archiviazione" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "assegna questo proprietario" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "concedi i permessi di visualizzazione a questi utenti" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "concedi i permessi di visualizzazione a questi gruppi" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "concedi permessi di modifica a questi utenti" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "concedi permessi di modifica a questi gruppi" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "assegna questi campi personalizzati" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "modello di elaborazione" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "modelli di elaborazione" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "priorità" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Espressione regolare non valida: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Colore non valido." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Il tipo di file %(type)s non è supportato" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Variabile non valida rilevata." @@ -854,135 +910,286 @@ msgstr "Email" msgid "Send me instructions!" msgstr "Inviami le istruzioni!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "pdf" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "pdfa" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "pdfa-1" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "pdfa-2" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "pdfa-3" + +#: paperless/models.py:38 +msgid "skip" +msgstr "salta" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "forza" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "mai" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "sempre" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "RGB" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "Grigio" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "CMYK" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "Imposta il tipo di PDF in uscita" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "Esegui OCR dalla pagina 1 a questo valore" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "Esegui OCR utilizzando queste lingue" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "Imposta la modalità OCR" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "Abilita rotazione pagina" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Inglese (US)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Arabo" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Africano" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Bielorusso" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Bulgaro" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Catalano" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Ceco" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Danese" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Tedesco" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Greco" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Inglese (GB)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Spagnolo" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Finlandese" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Francese" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Ungherese" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Italiano" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Lussemburghese" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norvegese" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Olandese" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Polacco" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portoghese (Brasile)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portoghese" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Rumeno" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Russo" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Slovacco" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Sloveno" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Serbo" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Svedese" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Turco" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ucraino" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Cinese semplificato" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Amministrazione di Paperless-ngx" diff --git a/src/locale/ko_KR/LC_MESSAGES/django.po b/src/locale/ko_KR/LC_MESSAGES/django.po index 43bd5eff1..e82817e39 100644 --- a/src/locale/ko_KR/LC_MESSAGES/django.po +++ b/src/locale/ko_KR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -25,48 +25,48 @@ msgstr "문서" msgid "owner" msgstr "소유자" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "없음" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" -msgstr "" +msgstr "아무 단어" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "모든 단어" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "정확히 일치" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "정규 표현식" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" -msgstr "" +msgstr "불분명한 단어" #: documents/models.py:59 msgid "Automatic" msgstr "자동" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "이름" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "일치" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "일치 알고리즘" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "대소문자 구분 없음" @@ -221,7 +221,7 @@ msgstr "디버그" #: documents/models.py:369 msgid "information" -msgstr "" +msgstr "정보" #: documents/models.py:370 msgid "warning" @@ -437,7 +437,7 @@ msgstr "" #: documents/models.py:471 msgid "value" -msgstr "" +msgstr "값" #: documents/models.py:474 msgid "filter rule" @@ -449,7 +449,7 @@ msgstr "" #: documents/models.py:586 msgid "Task ID" -msgstr "" +msgstr "작업 ID" #: documents/models.py:587 msgid "Celery ID for the Task that was run" @@ -465,7 +465,7 @@ msgstr "" #: documents/models.py:599 msgid "Task Filename" -msgstr "" +msgstr "작업 파일명" #: documents/models.py:600 msgid "Name of the file which the Task was run for" @@ -473,7 +473,7 @@ msgstr "" #: documents/models.py:606 msgid "Task Name" -msgstr "" +msgstr "작업명" #: documents/models.py:607 msgid "Name of the Task which was run" @@ -481,7 +481,7 @@ msgstr "" #: documents/models.py:614 msgid "Task State" -msgstr "" +msgstr "작업 상태" #: documents/models.py:615 msgid "Current state of the task being run" @@ -489,7 +489,7 @@ msgstr "" #: documents/models.py:620 msgid "Created DateTime" -msgstr "" +msgstr "생성일시" #: documents/models.py:621 msgid "Datetime field when the task result was created in UTC" @@ -497,7 +497,7 @@ msgstr "" #: documents/models.py:626 msgid "Started DateTime" -msgstr "" +msgstr "시작일시" #: documents/models.py:627 msgid "Datetime field when the task was started in UTC" @@ -505,7 +505,7 @@ msgstr "" #: documents/models.py:632 msgid "Completed DateTime" -msgstr "" +msgstr "완료일시" #: documents/models.py:633 msgid "Datetime field when the task was completed in UTC" @@ -513,7 +513,7 @@ msgstr "" #: documents/models.py:638 msgid "Result Data" -msgstr "" +msgstr "완료 결과" #: documents/models.py:640 msgid "The data returned by the task" @@ -521,7 +521,7 @@ msgstr "" #: documents/models.py:652 msgid "Note for the document" -msgstr "" +msgstr "문서에 대한 노트" #: documents/models.py:676 msgid "user" @@ -541,7 +541,7 @@ msgstr "" #: documents/models.py:691 msgid "Original" -msgstr "" +msgstr "원본" #: documents/models.py:702 msgid "expiration" @@ -589,11 +589,11 @@ msgstr "" #: documents/models.py:761 msgid "Document Link" -msgstr "" +msgstr "자료 링크" #: documents/models.py:773 msgid "data type" -msgstr "" +msgstr "데이터 타입" #: documents/models.py:781 msgid "custom field" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" +#: documents/models.py:912 +msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" +#: documents/models.py:989 +msgid "workflow triggers" msgstr "" -#: documents/models.py:977 -msgid "assign this storage path" -msgstr "" - -#: documents/models.py:986 -msgid "assign this owner" -msgstr "" - -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "" @@ -743,27 +799,27 @@ msgstr "" #: documents/templates/registration/logged_out.html:41 msgid "Sign in again" -msgstr "" +msgstr "다시 로그인해주세요" #: documents/templates/registration/login.html:14 msgid "Paperless-ngx sign in" -msgstr "" +msgstr "Paperless-ngx 로그인" #: documents/templates/registration/login.html:41 msgid "Please sign in." -msgstr "" +msgstr "로그인해주세요." #: documents/templates/registration/login.html:44 msgid "Your username and password didn't match. Please try again." -msgstr "" +msgstr "사용자명과 비밀번호가 일치하지 않습니다. 다시 시도해주세요." #: documents/templates/registration/login.html:48 msgid "Share link was not found." -msgstr "" +msgstr "공유링크가 유효하지 않습니다." #: documents/templates/registration/login.html:52 msgid "Share link has expired." -msgstr "" +msgstr "공유링크가 만료되었습니다." #: documents/templates/registration/login.html:55 msgid "Username" @@ -775,7 +831,7 @@ msgstr "비밀번호" #: documents/templates/registration/login.html:66 msgid "Sign in" -msgstr "" +msgstr "로그인" #: documents/templates/registration/login.html:70 msgid "Forgot your password?" @@ -783,7 +839,7 @@ msgstr "비밀번호를 잊으셨나요?" #: documents/templates/registration/password_reset_complete.html:14 msgid "Paperless-ngx reset password complete" -msgstr "" +msgstr "Paperless-ngx 비밀번호 초기화 완료" #: documents/templates/registration/password_reset_complete.html:40 msgid "Password reset complete." @@ -792,19 +848,19 @@ msgstr "비밀번호를 초기화했습니다." #: documents/templates/registration/password_reset_complete.html:42 #, python-format msgid "Your new password has been set. You can now log in" -msgstr "" +msgstr "새로운 비밀번호로 변경되었습니다. 여기에서 로그인하세요" #: documents/templates/registration/password_reset_confirm.html:14 msgid "Paperless-ngx reset password confirmation" -msgstr "" +msgstr "Paperless-ngx 비밀번호 초기화 확인" #: documents/templates/registration/password_reset_confirm.html:42 msgid "Set a new password." -msgstr "" +msgstr "새로운 비밀번호를 설정해주세요." #: documents/templates/registration/password_reset_confirm.html:46 msgid "Passwords did not match or too weak. Try again." -msgstr "" +msgstr "비밀번호가 일치하지 않거나 강력하지 않습니다. 다시 시도해주세요." #: documents/templates/registration/password_reset_confirm.html:49 msgid "New Password" @@ -820,15 +876,15 @@ msgstr "비밀번호 변경" #: documents/templates/registration/password_reset_confirm.html:65 msgid "request a new password reset" -msgstr "" +msgstr "새로운 비밀번호 초기화 요청" #: documents/templates/registration/password_reset_done.html:14 msgid "Paperless-ngx reset password sent" -msgstr "" +msgstr "Paperless-ngx 비밀번호 초기화 요청이 발송되었습니다" #: documents/templates/registration/password_reset_done.html:40 msgid "Check your inbox." -msgstr "" +msgstr "메일함을 확인해주세요." #: documents/templates/registration/password_reset_done.html:41 msgid "We've emailed you instructions for setting your password. You should receive the email shortly!" @@ -836,15 +892,15 @@ msgstr "" #: documents/templates/registration/password_reset_form.html:14 msgid "Paperless-ngx reset password request" -msgstr "" +msgstr "Paperless-ngx 비밀번호 초기화 요청" #: documents/templates/registration/password_reset_form.html:41 msgid "Enter your email address below, and we'll email instructions for setting a new one." -msgstr "" +msgstr "아래에 사용자 이메일 주소를 입력하세요. 새로운 비밀번호를 설정하는 방법을 메일로 보내드리겠습니다." #: documents/templates/registration/password_reset_form.html:44 msgid "An error occurred. Please try again." -msgstr "" +msgstr "에러가 발생했습니다. 다시 시도해주세요." #: documents/templates/registration/password_reset_form.html:47 msgid "Email" @@ -852,151 +908,302 @@ msgstr "전자우편" #: documents/templates/registration/password_reset_form.html:54 msgid "Send me instructions!" +msgstr "방법 받기!" + +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" msgstr "" #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "영어 (미국)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "아랍어" - -#: paperless/settings.py:588 -msgid "Afrikaans" -msgstr "아프리칸스어" - -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "벨라루스어" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "카탈로니아어" +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "체코어" +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" -#: paperless/settings.py:593 -msgid "Danish" -msgstr "덴마크어" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:594 -msgid "German" -msgstr "독일어" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:595 -msgid "Greek" -msgstr "그리스어" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "영어 (영국)" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "스페인어" +#: paperless/models.py:40 +msgid "force" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "핀란드어" +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "프랑스어" +#: paperless/models.py:49 +msgid "never" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 +msgid "English (US)" +msgstr "영어 (미국)" + +#: paperless/settings.py:602 +msgid "Arabic" +msgstr "아랍어" + +#: paperless/settings.py:603 +msgid "Afrikaans" +msgstr "아프리칸스어" + +#: paperless/settings.py:604 +msgid "Belarusian" +msgstr "벨라루스어" + +#: paperless/settings.py:605 +msgid "Bulgarian" +msgstr "불가리어" + +#: paperless/settings.py:606 +msgid "Catalan" +msgstr "카탈로니아어" + +#: paperless/settings.py:607 +msgid "Czech" +msgstr "체코어" + +#: paperless/settings.py:608 +msgid "Danish" +msgstr "덴마크어" + +#: paperless/settings.py:609 +msgid "German" +msgstr "독일어" + +#: paperless/settings.py:610 +msgid "Greek" +msgstr "그리스어" + +#: paperless/settings.py:611 +msgid "English (GB)" +msgstr "영어 (영국)" + +#: paperless/settings.py:612 +msgid "Spanish" +msgstr "스페인어" + +#: paperless/settings.py:613 +msgid "Finnish" +msgstr "핀란드어" + +#: paperless/settings.py:614 +msgid "French" +msgstr "프랑스어" + +#: paperless/settings.py:615 +msgid "Hungarian" +msgstr "헝가리어" + +#: paperless/settings.py:616 msgid "Italian" msgstr "이탈리아어" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "룩셈부르크어" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "노르웨이어" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" -msgstr "" +msgstr "네덜란드어" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" -msgstr "" +msgstr "폴란드어" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "포르투갈어 (브라질)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" -msgstr "" +msgstr "포르투갈어" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" -msgstr "" +msgstr "루마니아어" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" -msgstr "" +msgstr "러시아어" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" -msgstr "" +msgstr "슬로바키아어" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" -msgstr "" +msgstr "슬로베니아어" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" -msgstr "" +msgstr "세르비아어" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" -msgstr "" +msgstr "스웨덴어" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" -msgstr "" +msgstr "튀르키예어" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" -msgstr "" +msgstr "우크라이나어" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" -msgstr "" +msgstr "중국어 간체" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "" #: paperless_mail/admin.py:41 msgid "Authentication" -msgstr "" +msgstr "인증" #: paperless_mail/admin.py:44 msgid "Advanced settings" -msgstr "" +msgstr "고급 설정" #: paperless_mail/admin.py:60 msgid "Filter" -msgstr "" +msgstr "필터" #: paperless_mail/admin.py:63 msgid "Paperless will only process mails that match ALL of the filters given below." @@ -1004,7 +1211,7 @@ msgstr "" #: paperless_mail/admin.py:80 msgid "Actions" -msgstr "" +msgstr "작업" #: paperless_mail/admin.py:83 msgid "The action applied to the mail. This action is only performed when the mail body or attachments were consumed from the mail." @@ -1012,7 +1219,7 @@ msgstr "" #: paperless_mail/admin.py:91 msgid "Metadata" -msgstr "" +msgstr "메타데이터" #: paperless_mail/admin.py:94 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." @@ -1024,31 +1231,31 @@ msgstr "" #: paperless_mail/models.py:10 msgid "mail account" -msgstr "" +msgstr "메일 계정" #: paperless_mail/models.py:11 msgid "mail accounts" -msgstr "" +msgstr "메일 계정" #: paperless_mail/models.py:14 msgid "No encryption" -msgstr "" +msgstr "암호화 없음" #: paperless_mail/models.py:15 msgid "Use SSL" -msgstr "" +msgstr "SSL 사용" #: paperless_mail/models.py:16 msgid "Use STARTTLS" -msgstr "" +msgstr "STARTTLS 사용" #: paperless_mail/models.py:20 msgid "IMAP server" -msgstr "" +msgstr "IMAP 서버" #: paperless_mail/models.py:23 msgid "IMAP port" -msgstr "" +msgstr "IMAP 포트" #: paperless_mail/models.py:27 msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." @@ -1056,7 +1263,7 @@ msgstr "" #: paperless_mail/models.py:33 msgid "IMAP security" -msgstr "" +msgstr "IMAP 보안" #: paperless_mail/models.py:38 msgid "username" @@ -1072,7 +1279,7 @@ msgstr "" #: paperless_mail/models.py:45 msgid "character set" -msgstr "" +msgstr "문자셋" #: paperless_mail/models.py:49 msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'." @@ -1152,11 +1359,11 @@ msgstr "" #: paperless_mail/models.py:101 msgid "account" -msgstr "" +msgstr "계정" #: paperless_mail/models.py:105 paperless_mail/models.py:260 msgid "folder" -msgstr "" +msgstr "폴더" #: paperless_mail/models.py:109 msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." @@ -1212,7 +1419,7 @@ msgstr "" #: paperless_mail/models.py:189 msgid "action" -msgstr "" +msgstr "작업" #: paperless_mail/models.py:195 msgid "action parameter" @@ -1252,5 +1459,5 @@ msgstr "" #: paperless_mail/models.py:297 msgid "status" -msgstr "" +msgstr "상태" diff --git a/src/locale/lb_LU/LC_MESSAGES/django.po b/src/locale/lb_LU/LC_MESSAGES/django.po index c40040bcd..983395736 100644 --- a/src/locale/lb_LU/LC_MESSAGES/django.po +++ b/src/locale/lb_LU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Luxembourgish\n" "Language: lb_LU\n" @@ -25,27 +25,27 @@ msgstr "Dokumenter" msgid "owner" msgstr "" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Iergendee Wuert" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "All d'Wierder" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Exakten Treffer" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Regulären Ausdrock" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Ongenaut Wuert" @@ -53,20 +53,20 @@ msgstr "Ongenaut Wuert" msgid "Automatic" msgstr "Automatesch" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "Numm" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "Zouweisungsmuster" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "Zouweisungsalgorithmus" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "Grouss-/Klengschreiwung ignoréieren" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "Reiefolleg" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Just Dokumenter traitéieren, déi exakt dësen Dateinumm hunn (falls definéiert). Platzhalter wéi *.pdf oder *invoice* sinn erlaabt. D'Grouss-/Klengschreiwung gëtt ignoréiert." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "dës Etikett zouweisen" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "Dësen Dokumententyp zouweisen" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "Dëse Korrespondent zouweisen" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "dës Etikett zouweisen" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "Dësen Dokumententyp zouweisen" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "Dëse Korrespondent zouweisen" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "Reiefolleg" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ongëltege regulären Ausdrock: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Ongëlteg Faarf." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Fichierstyp %(type)s net ënnerstëtzt" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Ongëlteg Zeechen detektéiert." @@ -854,135 +910,286 @@ msgstr "" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Englesch (USA)" - -#: paperless/settings.py:587 -msgid "Arabic" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Belarusesch" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" +#: paperless/models.py:28 +msgid "pdfa-2" msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Tschechesch" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Dänesch" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Däitsch" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:29 +msgid "pdfa-3" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Englesch (GB)" - -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Spuenesch" - -#: paperless/settings.py:598 -msgid "Finnish" +#: paperless/models.py:38 +msgid "skip" msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Franséisch" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Italienesch" +msgid "English (US)" +msgstr "Englesch (USA)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Lëtzebuergesch" +msgid "Arabic" +msgstr "" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" -msgstr "Hollännesch" +msgid "Belarusian" +msgstr "Belarusesch" #: paperless/settings.py:605 -msgid "Polish" -msgstr "Polnesch" +msgid "Bulgarian" +msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" -msgstr "Portugisesch (Brasilien)" +msgid "Catalan" +msgstr "" #: paperless/settings.py:607 -msgid "Portuguese" -msgstr "Portugisesch" +msgid "Czech" +msgstr "Tschechesch" #: paperless/settings.py:608 -msgid "Romanian" -msgstr "Rumänesch" +msgid "Danish" +msgstr "Dänesch" #: paperless/settings.py:609 -msgid "Russian" -msgstr "Russesch" +msgid "German" +msgstr "Däitsch" #: paperless/settings.py:610 -msgid "Slovak" +msgid "Greek" msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" -msgstr "Slowenesch" +msgid "English (GB)" +msgstr "Englesch (GB)" #: paperless/settings.py:612 -msgid "Serbian" -msgstr "Serbesch" +msgid "Spanish" +msgstr "Spuenesch" #: paperless/settings.py:613 -msgid "Swedish" -msgstr "Schwedesch" +msgid "Finnish" +msgstr "" #: paperless/settings.py:614 -msgid "Turkish" -msgstr "Tierkesch" +msgid "French" +msgstr "Franséisch" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "Italienesch" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Lëtzebuergesch" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "Hollännesch" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "Polnesch" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "Portugisesch (Brasilien)" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "Portugisesch" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "Rumänesch" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "Russesch" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "Slowenesch" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "Serbesch" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "Schwedesch" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "Tierkesch" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Chinesesch (Vereinfacht)" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx-Administratioun" diff --git a/src/locale/lv_LV/LC_MESSAGES/django.po b/src/locale/lv_LV/LC_MESSAGES/django.po index 3da7f4274..1b2ec5dfb 100644 --- a/src/locale/lv_LV/LC_MESSAGES/django.po +++ b/src/locale/lv_LV/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Language: lv_LV\n" @@ -25,27 +25,27 @@ msgstr "Dokuments" msgid "owner" msgstr "īpašnieks" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Neviens" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "" @@ -53,20 +53,20 @@ msgstr "" msgid "Automatic" msgstr "" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" +#: documents/models.py:912 +msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" +#: documents/models.py:989 +msgid "workflow triggers" msgstr "" -#: documents/models.py:977 -msgid "assign this storage path" -msgstr "" - -#: documents/models.py:986 -msgid "assign this owner" -msgstr "" - -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "" @@ -854,135 +910,286 @@ msgstr "" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "" -#: paperless/settings.py:586 -msgid "English (US)" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:587 -msgid "Arabic" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" +#: paperless/models.py:28 +msgid "pdfa-2" msgstr "" -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:29 +msgid "pdfa-3" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" +#: paperless/models.py:38 +msgid "skip" msgstr "" -#: paperless/settings.py:592 -msgid "Czech" +#: paperless/models.py:39 +msgid "redo" msgstr "" -#: paperless/settings.py:593 -msgid "Danish" +#: paperless/models.py:40 +msgid "force" msgstr "" -#: paperless/settings.py:594 -msgid "German" +#: paperless/models.py:41 +msgid "skip_noarchive" msgstr "" -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:49 +msgid "never" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" +#: paperless/models.py:50 +msgid "with_text" msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" +#: paperless/models.py:51 +msgid "always" msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" +#: paperless/models.py:59 +msgid "clean" msgstr "" -#: paperless/settings.py:599 -msgid "French" +#: paperless/models.py:60 +msgid "clean-final" msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" +msgid "English (US)" msgstr "" #: paperless/settings.py:602 -msgid "Luxembourgish" +msgid "Arabic" msgstr "" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" +msgid "Belarusian" msgstr "" #: paperless/settings.py:605 -msgid "Polish" +msgid "Bulgarian" msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" +msgid "Catalan" msgstr "" #: paperless/settings.py:607 -msgid "Portuguese" +msgid "Czech" msgstr "" #: paperless/settings.py:608 -msgid "Romanian" +msgid "Danish" msgstr "" #: paperless/settings.py:609 -msgid "Russian" +msgid "German" msgstr "" #: paperless/settings.py:610 -msgid "Slovak" +msgid "Greek" msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" +msgid "English (GB)" msgstr "" #: paperless/settings.py:612 -msgid "Serbian" +msgid "Spanish" msgstr "" #: paperless/settings.py:613 -msgid "Swedish" +msgid "Finnish" msgstr "" #: paperless/settings.py:614 -msgid "Turkish" +msgid "French" msgstr "" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "" diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po index af571809a..7fdfe9c4e 100644 --- a/src/locale/nl_NL/LC_MESSAGES/django.po +++ b/src/locale/nl_NL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -25,27 +25,27 @@ msgstr "Documenten" msgid "owner" msgstr "eigenaar" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Geen" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Elk woord" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Alle woorden" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Exacte overeenkomst" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Reguliere expressie" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Gelijkaardig woord" @@ -53,20 +53,20 @@ msgstr "Gelijkaardig woord" msgid "Automatic" msgstr "Automatisch" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "naam" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "Overeenkomst" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "Algoritme voor het bepalen van de overeenkomst" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "is niet hoofdlettergevoelig" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "volgorde" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Alleen documenten verwerken die volledig overeenkomen, indien aangegeven. Je kunt jokertekens gebruiken, zoals *.pdf of *factuur*. Dit is niet hoofdlettergevoelig." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "wijs dit label toe" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "wijs dit documenttype toe" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "wijs deze correspondent toe" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "wijs dit label toe" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "wijs dit documenttype toe" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "wijs deze correspondent toe" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "volgorde" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ongeldige reguliere expressie: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Ongeldig kleur." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Bestandstype %(type)s niet ondersteund" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Ongeldige variabele ontdekt." @@ -854,135 +910,286 @@ msgstr "E-mailadres" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Engels (US)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Arabisch" - -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Wit-Russisch" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "Catalaans" - -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Tsjechisch" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Deens" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Duits" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Engels (Brits)" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Spaans" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "Fins" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Frans" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Italiaans" +msgid "English (US)" +msgstr "Engels (US)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Luxemburgs" +msgid "Arabic" +msgstr "Arabisch" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 +msgid "Belarusian" +msgstr "Wit-Russisch" + +#: paperless/settings.py:605 +msgid "Bulgarian" +msgstr "" + +#: paperless/settings.py:606 +msgid "Catalan" +msgstr "Catalaans" + +#: paperless/settings.py:607 +msgid "Czech" +msgstr "Tsjechisch" + +#: paperless/settings.py:608 +msgid "Danish" +msgstr "Deens" + +#: paperless/settings.py:609 +msgid "German" +msgstr "Duits" + +#: paperless/settings.py:610 +msgid "Greek" +msgstr "" + +#: paperless/settings.py:611 +msgid "English (GB)" +msgstr "Engels (Brits)" + +#: paperless/settings.py:612 +msgid "Spanish" +msgstr "Spaans" + +#: paperless/settings.py:613 +msgid "Finnish" +msgstr "Fins" + +#: paperless/settings.py:614 +msgid "French" +msgstr "Frans" + +#: paperless/settings.py:615 +msgid "Hungarian" +msgstr "" + +#: paperless/settings.py:616 +msgid "Italian" +msgstr "Italiaans" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Luxemburgs" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 msgid "Dutch" msgstr "Nederlands" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Pools" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portugees (Brazilië)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portugees" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Roemeens" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Russisch" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Slowaaks" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Sloveens" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Servisch" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Zweeds" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Turks" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Oekraïens" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Chinees (vereenvoudigd)" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administratie" diff --git a/src/locale/no_NO/LC_MESSAGES/django.po b/src/locale/no_NO/LC_MESSAGES/django.po index 0f725ed31..6b29cb281 100644 --- a/src/locale/no_NO/LC_MESSAGES/django.po +++ b/src/locale/no_NO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -25,27 +25,27 @@ msgstr "Dokumenter" msgid "owner" msgstr "eier" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Ingen" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Hvilket som helst ord" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Alle ord" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Eksakt match" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Regulære uttrykk" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Fuzzy word" @@ -53,20 +53,20 @@ msgstr "Fuzzy word" msgid "Automatic" msgstr "Automatisk" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "navn" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "treff" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "samsvarende algoritme" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "er insensitiv" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "API-opplasting" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Epost-henting" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "ordre" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "filtrer sti" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Bare last inn dokumenter med en sti som samsvarer med dette hvis angitt. Jokertegn angitt som * er tillatt. Saker er usensitive." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "filtrer filnavn" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Bare bruke dokumenter som samsvarer med dette filnavnet hvis angitt. Jokertegn som *.pdf eller *faktura* er tillatt. Saksfortegnet." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "filtrere dokumenter fra denne epostregelen" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "tildel tittel" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Tilordne en dokumenttittel, kan inkludere noen plassholdere, se dokumentasjon." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "tilordne denne taggen" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "tilordne denne dokumenttypen" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "Tildel denne korrespondenten" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "tilordne denne lagringsstien" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "tilordne denne eieren" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "gir lesetilgang til disse brukerne" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "gi lesetilgang til disse brukerne" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "gir skrivetilgang til disse brukerne" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "gi skrivetilgang til disse gruppene" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "forbruksmal" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "forbruksmaler" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "ordre" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ugyldig regulært uttrykk: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Ugyldig farge." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Filtype %(type)s støttes ikke" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Ugyldig variabel oppdaget." @@ -854,135 +910,286 @@ msgstr "E-post" msgid "Send me instructions!" msgstr "Send meg instruksjoner!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Engelsk (US)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Arabisk" - -#: paperless/settings.py:588 -msgid "Afrikaans" -msgstr "Afrikansk" - -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Hviterussisk" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "Katalansk" +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Tsjekkisk" +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Dansk" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:594 -msgid "German" -msgstr "Tysk" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:595 -msgid "Greek" -msgstr "Gresk" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Engelsk (GB)" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Spansk" +#: paperless/models.py:40 +msgid "force" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "Finsk" +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Fransk" +#: paperless/models.py:49 +msgid "never" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 +msgid "English (US)" +msgstr "Engelsk (US)" + +#: paperless/settings.py:602 +msgid "Arabic" +msgstr "Arabisk" + +#: paperless/settings.py:603 +msgid "Afrikaans" +msgstr "Afrikansk" + +#: paperless/settings.py:604 +msgid "Belarusian" +msgstr "Hviterussisk" + +#: paperless/settings.py:605 +msgid "Bulgarian" +msgstr "" + +#: paperless/settings.py:606 +msgid "Catalan" +msgstr "Katalansk" + +#: paperless/settings.py:607 +msgid "Czech" +msgstr "Tsjekkisk" + +#: paperless/settings.py:608 +msgid "Danish" +msgstr "Dansk" + +#: paperless/settings.py:609 +msgid "German" +msgstr "Tysk" + +#: paperless/settings.py:610 +msgid "Greek" +msgstr "Gresk" + +#: paperless/settings.py:611 +msgid "English (GB)" +msgstr "Engelsk (GB)" + +#: paperless/settings.py:612 +msgid "Spanish" +msgstr "Spansk" + +#: paperless/settings.py:613 +msgid "Finnish" +msgstr "Finsk" + +#: paperless/settings.py:614 +msgid "French" +msgstr "Fransk" + +#: paperless/settings.py:615 +msgid "Hungarian" +msgstr "" + +#: paperless/settings.py:616 msgid "Italian" msgstr "Italiensk" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Luxembourgsk" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norsk" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Nederlandsk" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Polsk" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portugisisk (Brasil)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portugisisk" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Rumensk" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Russisk" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Slovakisk" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Slovenian" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Serbisk" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Svensk" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Tyrkisk" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukrainsk" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Kinesisk forenklet" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx-administrasjon" diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po index 0ff08435e..b256a0af5 100644 --- a/src/locale/pl_PL/LC_MESSAGES/django.po +++ b/src/locale/pl_PL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-28 12:09\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -25,27 +25,27 @@ msgstr "Dokumenty" msgid "owner" msgstr "właściciel" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Brak" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Dowolne słowo" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Wszystkie słowa" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Dokładne dopasowanie" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Wyrażenie regularne" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Dopasowanie rozmyte" @@ -53,20 +53,20 @@ msgstr "Dopasowanie rozmyte" msgid "Automatic" msgstr "Automatyczny" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "nazwa" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "dopasowanie" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algorytm dopasowania" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "bez rozróżniania wielkości znaków" @@ -112,11 +112,11 @@ msgstr "ścieżka" #: documents/models.py:129 documents/models.py:156 msgid "storage path" -msgstr "ścieżka przechowywania" +msgstr "ścieżka zapisu" #: documents/models.py:130 msgid "storage paths" -msgstr "ścieżki przechowywania" +msgstr "ścieżki zapisu" #: documents/models.py:137 msgid "Unencrypted" @@ -197,7 +197,7 @@ msgstr "oryginalna nazwa pliku" #: documents/models.py:256 msgid "The original name of the file when it was uploaded" -msgstr "Oryginalna nazwa pliku podczas jego przesyłania" +msgstr "Oryginalna nazwa pliku w momencie jego przesyłania" #: documents/models.py:263 msgid "archive serial number" @@ -253,7 +253,7 @@ msgstr "log" #: documents/models.py:390 msgid "logs" -msgstr "logi" +msgstr "dziennik" #: documents/models.py:399 documents/models.py:466 msgid "saved view" @@ -381,7 +381,7 @@ msgstr "ASN mniejszy niż" #: documents/models.py:447 msgid "storage path is" -msgstr "ścieżką przechowywania jest" +msgstr "ścieżką zapisu jest" #: documents/models.py:448 msgid "has correspondent in" @@ -401,11 +401,11 @@ msgstr "nie ma typu dokumentu w" #: documents/models.py:452 msgid "has storage path in" -msgstr "ma ścieżkę składowania w" +msgstr "ma ścieżkę zapisu w" #: documents/models.py:453 msgid "does not have storage path in" -msgstr "nie ma ścieżki składowania w" +msgstr "nie ma ścieżki zapisu w" #: documents/models.py:454 msgid "owner is" @@ -425,7 +425,7 @@ msgstr "nie ma właściciela w" #: documents/models.py:458 msgid "has custom field value" -msgstr "ma wartość pola niestandardowego" +msgstr "ma wartość pola dodatkowego" #: documents/models.py:459 msgid "is shared by me" @@ -597,127 +597,183 @@ msgstr "typ danych" #: documents/models.py:781 msgid "custom field" -msgstr "pole niestandardowe" +msgstr "pole dodatkowe" #: documents/models.py:782 msgid "custom fields" -msgstr "pola niestandardowe" +msgstr "pola dodatkowe" #: documents/models.py:844 msgid "custom field instance" -msgstr "przykład pola niestandardowego" +msgstr "przypisane pole dodatkowe" #: documents/models.py:845 msgid "custom field instances" -msgstr "przykłady pól niestandardowych" +msgstr "przypisanych pól dodatkowych" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "Rozpoczęto pobieranie" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "Dodano dokument" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "Dokument zaktualizowano" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Folder pobierania" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Przesyłanie przez API" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Pobieranie E-mail" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "kolejność" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "Typ wyzwalacza dla procesu" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "filtruj ścieżkę" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Pobiera tylko dokumenty ze ścieżką, która pasuje do wyspecyfikowanej. Symbol * jest dozwolony. Wielkość liter bez znaczenia." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "filtruj po nazwie pliku" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Przetwarzaj tylko dokumenty, które całkowicie pasują do tej nazwy pliku, jeśli jest podana. Wzorce dopasowania jak *.pdf lub *faktura* są dozwolone. Wielkość liter nie jest rozróżniana." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "filtruj dokumenty z tej reguły pocztowej" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "posiada wskazane tag(i)" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "posiada wskazany typ dokumentu" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "posiada wskazanego nadawcę" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "wyzwalacz procesu" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "wyzwalacze procesu" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "Przypisanie" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "Typ akcji w procesie" + +#: documents/models.py:1006 msgid "assign title" msgstr "przypisz tytuł" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Przypisz tytuł dokumentu, może zawierać zmienne, szczegóły w dokumentacji." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "przypisz ten tag" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "przypisz ten typ dokumentu" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "przypisz tego korespondenta" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "przypisz tą ścieżkę zapisu" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "przypisz tego właściciela" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "nadaj tym użytkownikom uprawnienia do przeglądania" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "nadaj tym grupom uprawnienia do przeglądania" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "nadaj tym użytkownikom uprawnienia do zmiany" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "nadaj tym grupom uprawnienia do zmiany" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" -msgstr "przypisz te pola niestandardowe" +msgstr "przypisz te pola dodatkowe" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "szablon pobierania" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "akcja procesu" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "szablony pobierania" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "akcje procesu" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "kolejność" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "wyzwalacze" + +#: documents/models.py:1114 +msgid "actions" +msgstr "akcje" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "włączony" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Nieprawidłowe wyrażenie regularne: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Nieprawidłowy kolor." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Typ pliku %(type)s nie jest obsługiwany" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Wykryto nieprawidłową zmienną." @@ -854,135 +910,286 @@ msgstr "Adres e-mail" msgid "Send me instructions!" msgstr "Wyślij mi instrukcje!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "Nie można przetworzyć URI {value}, błędna struktura" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "Nie można przetworzyć URI {value}, błędna lokalizacja sieciowa lub ścieżka" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "Nie można przetworzyć URI {value}" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "pdf" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "pdfa" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "pdfa-1" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "pdfa-2" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "pdfa-3" + +#: paperless/models.py:38 +msgid "skip" +msgstr "skip" + +#: paperless/models.py:39 +msgid "redo" +msgstr "redo" + +#: paperless/models.py:40 +msgid "force" +msgstr "force" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "skip_noarchive" + +#: paperless/models.py:49 +msgid "never" +msgstr "never" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "with_text" + +#: paperless/models.py:51 +msgid "always" +msgstr "always" + +#: paperless/models.py:59 +msgid "clean" +msgstr "wyczyść" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "clean-final" + +#: paperless/models.py:61 +msgid "none" +msgstr "brak" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "LeaveColorUnchanged" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "RGB" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "UseDeviceIndependentColor" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "Gray" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "CMYK" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "Określa wyjściowy typ PDF" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "Wykonaj OCR od strony 1 do strony wskazanej" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "Wykonaj OCR używając wskazanych języków" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "Określa tryb OCR" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "Zarządza tworzeniem pliku archiwum" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "Określa wartość rezerwową dla DPI obrazu" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "Zarządza procesem oczyszczania skanów" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "Włącza prostowanie" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "Włącza obracanie strony" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "Określa próg dla obracania strony" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "Ustawia maksymalny rozmiar obrazu dla dekompresji" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "Określa strategię konwersji kolorów przez Ghostscript" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "Dodaje dodatkowe argumenty dla OCRMyPDF" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "paperless ustawienia aplikacji" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Angielski (USA)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "arabski" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Afrykanerski" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Białoruski" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Bułgarski" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Kataloński" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Czeski" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Duński" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Niemiecki" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Grecki" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Angielski (Wielka Brytania)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Hiszpański" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Fiński" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Francuski" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Węgierski" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Włoski" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Luksemburski" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norweski" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Holenderski" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Polski" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portugalski (Brazylia)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portugalski" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Rumuński" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Rosyjski" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Słowacki" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Słoweński" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Serbski" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Szwedzki" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Turecki" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukraiński" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Chiński uproszczony" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Administracja Paperless-ngx" diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po index c828a111a..aa30b26f3 100644 --- a/src/locale/pt_BR/LC_MESSAGES/django.po +++ b/src/locale/pt_BR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -25,27 +25,27 @@ msgstr "Documentos" msgid "owner" msgstr "proprietário" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Nenhum" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Qualquer palavra" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Todas as palavras" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Correspondência exata" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Expressão regular" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Palavra difusa (fuzzy)" @@ -53,20 +53,20 @@ msgstr "Palavra difusa (fuzzy)" msgid "Automatic" msgstr "Automático" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "nome" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "correspondência" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algoritmo de correspondência" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "diferencia maiúsculas de minúsculas" @@ -611,114 +611,170 @@ msgstr "instância de campo personalizado" msgid "custom field instances" msgstr "instâncias de campo personalizadas" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Pasta de Consumo" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Envio por API" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Busca em e-mail" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "ordem" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "filtro de caminho" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Consumir somente documentos que correspondem a este nome de arquivo se especificado.\n" "Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsculas e minúsculas." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" -msgstr "atribuir título" +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." -msgstr "Atribuir um título de documento, pode incluir alguns espaços reservados, consulta a documentação." +#: documents/models.py:976 +msgid "has this document type" +msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "atribuir esta etiqueta" +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "atribuir este tipo de documento" +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "atribuir este correspondente" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" -#: documents/models.py:977 -msgid "assign this storage path" -msgstr "atribuir este caminho de armazenamento" - -#: documents/models.py:986 -msgid "assign this owner" -msgstr "atribuir este proprietário" - -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "atribuir título" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "Atribuir um título de documento, pode incluir alguns espaços reservados, consulta a documentação." + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "atribuir esta etiqueta" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "atribuir este tipo de documento" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "atribuir este correspondente" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "atribuir este caminho de armazenamento" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "atribuir este proprietário" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "atribuir estes campos personalizados" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "modelo de consumo" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "modelos de consumo" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "ordem" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expressão regular inválida: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Cor inválida." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de arquivo %(type)s não suportado" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Variável inválida detectada." @@ -855,135 +911,286 @@ msgstr "E-mail" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Inglês (EUA)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Árabe" - -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Bielorrusso" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "Catalão" - -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Tcheco" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Dinamarquês" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Alemão" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Inglês (GB)" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Espanhol" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "Finlandês" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Francês" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Italiano" +msgid "English (US)" +msgstr "Inglês (EUA)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Luxemburguês" +msgid "Arabic" +msgstr "Árabe" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" -msgstr "Holandês" +msgid "Belarusian" +msgstr "Bielorrusso" #: paperless/settings.py:605 -msgid "Polish" -msgstr "Polonês" +msgid "Bulgarian" +msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" -msgstr "Português (Brasil)" +msgid "Catalan" +msgstr "Catalão" #: paperless/settings.py:607 -msgid "Portuguese" -msgstr "Português" +msgid "Czech" +msgstr "Tcheco" #: paperless/settings.py:608 -msgid "Romanian" -msgstr "Romeno" +msgid "Danish" +msgstr "Dinamarquês" #: paperless/settings.py:609 -msgid "Russian" -msgstr "Russo" +msgid "German" +msgstr "Alemão" #: paperless/settings.py:610 -msgid "Slovak" -msgstr "Eslovaco" +msgid "Greek" +msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" -msgstr "Esloveno" +msgid "English (GB)" +msgstr "Inglês (GB)" #: paperless/settings.py:612 -msgid "Serbian" -msgstr "Sérvio" +msgid "Spanish" +msgstr "Espanhol" #: paperless/settings.py:613 -msgid "Swedish" -msgstr "Sueco" +msgid "Finnish" +msgstr "Finlandês" #: paperless/settings.py:614 -msgid "Turkish" -msgstr "Turco" +msgid "French" +msgstr "Francês" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "Italiano" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Luxemburguês" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "Holandês" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "Polonês" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "Português (Brasil)" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "Português" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "Romeno" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "Russo" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "Eslovaco" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "Esloveno" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "Sérvio" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "Sueco" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "Turco" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Chinês Simplificado" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Administração do Paperless-ngx" diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po index 7e48e17f1..5b63520b8 100644 --- a/src/locale/pt_PT/LC_MESSAGES/django.po +++ b/src/locale/pt_PT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Language: pt_PT\n" @@ -25,27 +25,27 @@ msgstr "Documentos" msgid "owner" msgstr "dono" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Nenhum" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Qualquer palavra" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Todas as palavras" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Detecção exata" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Expressão regular" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Palavra difusa (fuzzy)" @@ -53,20 +53,20 @@ msgstr "Palavra difusa (fuzzy)" msgid "Automatic" msgstr "Automático" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "nome" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "correspondência" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algoritmo correspondente" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "é insensível" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "ordem" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Consumir apenas documentos que correspondam inteiramente ao nome de arquivo se especificado. Genéricos como *.pdf ou *fatura* são permitidos. Não é sensível a letras maiúsculas/minúsculas." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "atribuir esta etiqueta" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "atribuir este tipo de documento" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "atribuir este correspondente" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "atribuir esta etiqueta" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "atribuir este tipo de documento" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "atribuir este correspondente" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "ordem" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expressão regular inválida: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Cor invalida." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de arquivo %(type)s não suportado" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Variável inválida detetada." @@ -854,135 +910,286 @@ msgstr "Email" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Inglês (EUA)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Árabe" - -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Bielorrusso" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "Catalão" - -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Checo" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Dinamarquês" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Deutsch" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Inglês (GB)" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Espanhol" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "Finlandês" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Français" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Italiano" +msgid "English (US)" +msgstr "Inglês (EUA)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Luxemburguês" +msgid "Arabic" +msgstr "Árabe" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" -msgstr "Nederlandse" +msgid "Belarusian" +msgstr "Bielorrusso" #: paperless/settings.py:605 -msgid "Polish" -msgstr "Polaco" +msgid "Bulgarian" +msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" -msgstr "Português (Brasil)" +msgid "Catalan" +msgstr "Catalão" #: paperless/settings.py:607 -msgid "Portuguese" -msgstr "Português" +msgid "Czech" +msgstr "Checo" #: paperless/settings.py:608 -msgid "Romanian" -msgstr "Romeno" +msgid "Danish" +msgstr "Dinamarquês" #: paperless/settings.py:609 -msgid "Russian" -msgstr "Russo" +msgid "German" +msgstr "Deutsch" #: paperless/settings.py:610 -msgid "Slovak" -msgstr "Eslovaco" +msgid "Greek" +msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" -msgstr "Esloveno" +msgid "English (GB)" +msgstr "Inglês (GB)" #: paperless/settings.py:612 -msgid "Serbian" -msgstr "Sérvio" +msgid "Spanish" +msgstr "Espanhol" #: paperless/settings.py:613 -msgid "Swedish" -msgstr "Sueco" +msgid "Finnish" +msgstr "Finlandês" #: paperless/settings.py:614 -msgid "Turkish" -msgstr "Turco" +msgid "French" +msgstr "Français" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "Italiano" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Luxemburguês" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "Nederlandse" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "Polaco" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "Português (Brasil)" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "Português" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "Romeno" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "Russo" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "Eslovaco" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "Esloveno" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "Sérvio" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "Sueco" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "Turco" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Chinês Simplificado" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Administração do Paperless-ngx" diff --git a/src/locale/ro_RO/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po index bf32134f2..a8a506f33 100644 --- a/src/locale/ro_RO/LC_MESSAGES/django.po +++ b/src/locale/ro_RO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" @@ -25,27 +25,27 @@ msgstr "Documente" msgid "owner" msgstr "proprietar" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Nimic" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Orice cuvânt" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Toate cuvintele" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Potrivire exactă" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Expresie regulată" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Mod neatent" @@ -53,20 +53,20 @@ msgstr "Mod neatent" msgid "Automatic" msgstr "Automat" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "nume" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "potrivire" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algoritm de potrivire" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "nu ține cont de majuscule" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "ordonează" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Consumă doar documentele care se potrivesc în întregime cu acest nume de fișier, dacă este specificat. Simbolul * ține locul oricărui șir de caractere. Majusculele nu contează." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "atribuie această etichetă" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "atribuie acest tip" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "atribuie acest corespondent" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "atribuie această etichetă" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "atribuie acest tip" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "atribuie acest corespondent" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "ordonează" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expresie regulată invalida: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Culoare invalidă." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Tip de fișier %(type)s nesuportat" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "" @@ -854,135 +910,286 @@ msgstr "" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Engleză (Americană)" - -#: paperless/settings.py:587 -msgid "Arabic" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:28 +msgid "pdfa-2" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" +#: paperless/models.py:29 +msgid "pdfa-3" msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Cehă" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Daneză" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Germană" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:38 +msgid "skip" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Engleză (Britanică)" - -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Spaniolă" - -#: paperless/settings.py:598 -msgid "Finnish" +#: paperless/models.py:39 +msgid "redo" msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Franceză" +#: paperless/models.py:40 +msgid "force" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Italiană" +msgid "English (US)" +msgstr "Engleză (Americană)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Luxemburgheză" +msgid "Arabic" +msgstr "" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" -msgstr "Olandeză" +msgid "Belarusian" +msgstr "" #: paperless/settings.py:605 -msgid "Polish" -msgstr "Poloneză" +msgid "Bulgarian" +msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" -msgstr "Portugheză (Brazilia)" +msgid "Catalan" +msgstr "" #: paperless/settings.py:607 -msgid "Portuguese" -msgstr "Portugheză" +msgid "Czech" +msgstr "Cehă" #: paperless/settings.py:608 -msgid "Romanian" -msgstr "Română" +msgid "Danish" +msgstr "Daneză" #: paperless/settings.py:609 -msgid "Russian" -msgstr "Rusă" +msgid "German" +msgstr "Germană" #: paperless/settings.py:610 -msgid "Slovak" +msgid "Greek" msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" -msgstr "" +msgid "English (GB)" +msgstr "Engleză (Britanică)" #: paperless/settings.py:612 -msgid "Serbian" -msgstr "" +msgid "Spanish" +msgstr "Spaniolă" #: paperless/settings.py:613 -msgid "Swedish" -msgstr "Suedeză" - -#: paperless/settings.py:614 -msgid "Turkish" +msgid "Finnish" msgstr "" +#: paperless/settings.py:614 +msgid "French" +msgstr "Franceză" + #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "Italiană" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Luxemburgheză" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "Olandeză" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "Poloneză" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "Portugheză (Brazilia)" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "Portugheză" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "Română" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "Rusă" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "Suedeză" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Administrare Paperless-ngx" diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po index 2b923fd91..2740a5363 100644 --- a/src/locale/ru_RU/LC_MESSAGES/django.po +++ b/src/locale/ru_RU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -25,27 +25,27 @@ msgstr "Документы" msgid "owner" msgstr "владелец" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Ничего" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Любые слова" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Все слова" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Точное соответствие" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Регулярное выражение" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "\"Нечёткий\" режим" @@ -53,20 +53,20 @@ msgstr "\"Нечёткий\" режим" msgid "Automatic" msgstr "Автоматически" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "имя" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "соответствие" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "алгоритм сопоставления" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "без учёта регистра" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Загрузка API" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Получить почту" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "порядок" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Обрабатывать только документы, которые полностью совпадают с именем файла (если оно указано). Маски, например *.pdf или *счет*, разрешены. Без учёта регистра." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "назначить этот тег" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "назначить этот тип документа" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "назначить этого корреспондента" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "назначить этот тег" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "назначить этот тип документа" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "назначить этого корреспондента" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "порядок" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "неверное регулярное выражение: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Неверный цвет." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Тип файла %(type)s не поддерживается" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Обнаружена неверная переменная." @@ -854,135 +910,286 @@ msgstr "Электронная почта" msgid "Send me instructions!" msgstr "Отправить мне инструкции!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:38 +msgid "skip" +msgstr "" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Английский (США)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Арабский" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Африкаанс" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Белорусский" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Болгарский" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Каталонский" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Чешский" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Датский" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Немецкий" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Греческий" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Английский (Великобритании)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Испанский" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Финский" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Французский" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Венгерский" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Итальянский" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Люксембургский" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Норвежский" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Датский" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Польский" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Португальский (Бразилия)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Португальский" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Румынский" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Русский" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Словацкий" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Словенский" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Сербский" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Шведский" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Турецкий" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Украинский" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Китайский упрощенный" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Администрирование Paperless-ngx" diff --git a/src/locale/sk_SK/LC_MESSAGES/django.po b/src/locale/sk_SK/LC_MESSAGES/django.po index cb589dfc5..3a9167812 100644 --- a/src/locale/sk_SK/LC_MESSAGES/django.po +++ b/src/locale/sk_SK/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Language: sk_SK\n" @@ -25,27 +25,27 @@ msgstr "Dokumenty" msgid "owner" msgstr "vlastník" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Žiadny" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Akékoľvek slovo" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Všetky slová" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Presná zhoda" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Regulárny výraz" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Nejednoznačné slovo" @@ -53,20 +53,20 @@ msgstr "Nejednoznačné slovo" msgid "Automatic" msgstr "Automatické" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "meno" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "zhoda" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algoritmus zhody" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "nerozlišuje veľké a malé písmená" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "poradie" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Spracuje iba dokumenty so zhodným názvom, ak je vyplnený. Použitie zástupných znakov ako *.pdf alebo *invoice* je povolené. Rozoznáva malé a veľké písmená." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "priradiť tento štítok" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "priradiť tento typ dokumentu" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "priradiť tohto odosielateľa" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "priradiť tento štítok" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "priradiť tento typ dokumentu" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "priradiť tohto odosielateľa" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "poradie" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Neplatný regulárny výraz: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Neplatná farba." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Typ súboru %(type)s nie je podporovaný" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Zistená neplatná premenná." @@ -854,135 +910,286 @@ msgstr "E-mail" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Angličtina (US)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Arabčina" - -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Bieloruština" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "Catalan" - -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Čeština" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Dánčina" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Nemčina" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Angličtina (GB)" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Španielčina" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "Finnish" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Francúzština" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Taliančina" +msgid "English (US)" +msgstr "Angličtina (US)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Luxemburčina" +msgid "Arabic" +msgstr "Arabčina" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" -msgstr "Holandčina" +msgid "Belarusian" +msgstr "Bieloruština" #: paperless/settings.py:605 -msgid "Polish" -msgstr "Polština" +msgid "Bulgarian" +msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" -msgstr "Portugalčina (Brazília)" +msgid "Catalan" +msgstr "Catalan" #: paperless/settings.py:607 -msgid "Portuguese" -msgstr "Portugalčina" +msgid "Czech" +msgstr "Čeština" #: paperless/settings.py:608 -msgid "Romanian" -msgstr "Rumunčina" +msgid "Danish" +msgstr "Dánčina" #: paperless/settings.py:609 -msgid "Russian" -msgstr "Ruština" +msgid "German" +msgstr "Nemčina" #: paperless/settings.py:610 -msgid "Slovak" -msgstr "Slovenčina" +msgid "Greek" +msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" -msgstr "Slovinčina" +msgid "English (GB)" +msgstr "Angličtina (GB)" #: paperless/settings.py:612 -msgid "Serbian" -msgstr "Srbčina" +msgid "Spanish" +msgstr "Španielčina" #: paperless/settings.py:613 -msgid "Swedish" -msgstr "Švédčina" +msgid "Finnish" +msgstr "Finnish" #: paperless/settings.py:614 -msgid "Turkish" -msgstr "Turečtina" +msgid "French" +msgstr "Francúzština" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "Taliančina" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Luxemburčina" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "Holandčina" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "Polština" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "Portugalčina (Brazília)" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "Portugalčina" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "Rumunčina" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "Ruština" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "Slovenčina" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "Slovinčina" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "Srbčina" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "Švédčina" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "Turečtina" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Čínština (zjednodušená)" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Správa Paperless-ngx" diff --git a/src/locale/sl_SI/LC_MESSAGES/django.po b/src/locale/sl_SI/LC_MESSAGES/django.po index 1ba0b53b9..864b8e813 100644 --- a/src/locale/sl_SI/LC_MESSAGES/django.po +++ b/src/locale/sl_SI/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" @@ -25,27 +25,27 @@ msgstr "Dokumenti" msgid "owner" msgstr "lastnik" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Brez" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Katerakoli beseda" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Vse besede" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Točno ujemanje" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Regularni izraz" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Fuzzy beseda" @@ -53,20 +53,20 @@ msgstr "Fuzzy beseda" msgid "Automatic" msgstr "Samodejno" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "ime" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "ujemanje" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algoritem ujemanja" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "brez razlikovanje velikosti črk" @@ -611,113 +611,169 @@ msgstr "primer polja po meri" msgid "custom field instances" msgstr "primeri polja po meri" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Zajemalna mapa" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Api prenos" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Pridobi e-pošto" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "vrstni red" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "filtriraj pot" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "Če je določena, zajemi samo dokumente s potjo, ki se ujema s to. Dovoljeni so nadomestni znaki, določeni kot *. Ni občutljivo na velikost črk." -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "filtriraj imena datotek" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Uporabljajte samo dokumente, ki se v celoti ujemajo s tem imenom datoteke, če je navedeno. Dovoljeni so nadomestni znaki, kot sta *.pdf ali *račun*. Neobčutljiva na velike in male črke." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "filtriraj dokumente iz tega e-poštnega pravila" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "dodeli naslov" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "Dodelite naslov dokumenta, lahko vključuje nekatere nadomestne znake, glejte dokumentacijo." -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "dodeli to oznako" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "dodeli to vrsto dokumenta" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "dodeli tega dopisnika" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "dodeli to pot shranjevanja" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "določi tega lastnika" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "tem uporabnikom podeli dovoljenje za ogled" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "tem skupinam podeli dovoljenje za ogled" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "tem uporabnikom podeli dovoljenje za spreminjanje" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "tem skupinam podeli dovoljenje za spreminjanje" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "zajemalna predloga" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "zajemalne predloge" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "vrstni red" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Neveljaven splošen izraz: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Napačna barva." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s ni podprta" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Zaznani neveljavni znaki." @@ -854,135 +910,286 @@ msgstr "E-pošta" msgid "Send me instructions!" msgstr "Pošljite mi navodila!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:38 +msgid "skip" +msgstr "" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Angleščina (ZDA)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Arabščina" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Afrikanščina" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Beloruščina" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Bolgarščina" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Katalonščina" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Češčina" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Danščina" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Nemščina" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Grščina" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Angleščina (GB)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Španščina" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Finščina" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Francoščina" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Madžarščina" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Italijanščina" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Luksemburški" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norveščina" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Nizozemščina" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Poljščina" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portugalščina (Brazilija)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portugalščina" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Romunščina" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Ruščina" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Slovaščina" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Slovenščina" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Srbščina" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Švedščina" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Turščina" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukrajinščina" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Poenostavljena kitajščina" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administracija" diff --git a/src/locale/sr_CS/LC_MESSAGES/django.po b/src/locale/sr_CS/LC_MESSAGES/django.po index 55dd05c41..4d770edeb 100644 --- a/src/locale/sr_CS/LC_MESSAGES/django.po +++ b/src/locale/sr_CS/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Serbian (Latin)\n" "Language: sr_CS\n" @@ -25,27 +25,27 @@ msgstr "Dokumenta" msgid "owner" msgstr "vlasnik" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Nijedan" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Bilo koja reč" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Sve reči" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Tačno podudaranje" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Regularni izraz" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Fuzzy reč" @@ -53,20 +53,20 @@ msgstr "Fuzzy reč" msgid "Automatic" msgstr "Automatski" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "naziv" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "poklapanje" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "algoritam podudaranja" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "bez razlike veliko/malo slovo" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "Folder za obradu" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "Preuzimanje e-pošte" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "raspored" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "filtriraj putanju" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "filtriraj ime fajla" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Konzumirajte samo dokumente koji u potpunosti odgovaraju ovom nazivu datoteke ako je navedeno. Dopušteni su zamenski znakovi kao što su *.pdf ili *faktura*. Neosetljivo je na mala i mala slova." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" -msgstr "dodeli naslov" - -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "dodeli ovu oznaku" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "dodeli ovaj tip dokumenta" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "dodeli ovog korspodenta" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "dodeli naslov" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "dodeli ovu oznaku" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "dodeli ovaj tip dokumenta" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "dodeli ovog korspodenta" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "šabloni za obradu" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "raspored" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Nevažeći regularni izraz: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Nevažeća boja." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s nije podržana" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Otkrivena je nevažeća promenljiva." @@ -854,135 +910,286 @@ msgstr "Email" msgid "Send me instructions!" msgstr "Pošalji mi uputstva!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:38 +msgid "skip" +msgstr "" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "Engleski (US)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "Arapski" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Afrički" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "Beloruski" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "Bugarski" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Katalonski" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "Češki" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "Danski" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "Nemački" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Grčki" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "Engleski (UK)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "Španski" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "Finski" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "Francuski" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "Mađarski" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "Italijanski" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Luksemburški" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norveški" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Holandski" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Poljski" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portugalski (Brazil)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portugalski" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Rumunski" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Ruski" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Slovački" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Slovenački" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Srpski" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Švedski" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Turski" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukrajinski" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Kineski pojednostavljen" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administracija" diff --git a/src/locale/sv_SE/LC_MESSAGES/django.po b/src/locale/sv_SE/LC_MESSAGES/django.po index 0ecc2537a..f8620ac8a 100644 --- a/src/locale/sv_SE/LC_MESSAGES/django.po +++ b/src/locale/sv_SE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -25,27 +25,27 @@ msgstr "Dokument" msgid "owner" msgstr "ägare" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Ingen" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Valfritt ord" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Alla ord" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Exakt matchning" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Reguljära uttryck" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Ungefärligt ord" @@ -53,20 +53,20 @@ msgstr "Ungefärligt ord" msgid "Automatic" msgstr "Automatisk" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "namn" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "träff" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "matchande algoritm" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "är ej skiftlägeskänsligt" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Api-uppladdning" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "ordning" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Konsumera endast dokument som matchar exakt detta filnamn, om det är angivet. Jokertecken som *.pdf eller *faktura* är tillåtna. Ej skiftlägeskänsligt." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" -msgstr "tilldela titel" - -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "tilldela denna etikett" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "tilldela den här dokumenttypen" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "tilldela denna korrespondent" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" -msgstr "tilldela denna ägare" +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "tilldela titel" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "tilldela denna etikett" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "tilldela den här dokumenttypen" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "tilldela denna korrespondent" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "tilldela denna ägare" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "ordning" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ogiltigt reguljärt uttryck: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Ogiltig färg." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Filtypen %(type)s stöds inte" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Ogiltig variabel upptäckt." @@ -854,135 +910,286 @@ msgstr "E-post" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Engelska (USA)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Arabiska" - -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Belarusiska" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "Kataloniska" - -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Tjeckiska" - -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Danska" - -#: paperless/settings.py:594 -msgid "German" -msgstr "Tyska" - -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Engelska (GB)" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Spanska" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "Finska" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Franska" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" -msgstr "Italienska" +msgid "English (US)" +msgstr "Engelska (USA)" #: paperless/settings.py:602 -msgid "Luxembourgish" -msgstr "Luxemburgiska" +msgid "Arabic" +msgstr "Arabiska" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 +msgid "Belarusian" +msgstr "Belarusiska" + +#: paperless/settings.py:605 +msgid "Bulgarian" +msgstr "" + +#: paperless/settings.py:606 +msgid "Catalan" +msgstr "Kataloniska" + +#: paperless/settings.py:607 +msgid "Czech" +msgstr "Tjeckiska" + +#: paperless/settings.py:608 +msgid "Danish" +msgstr "Danska" + +#: paperless/settings.py:609 +msgid "German" +msgstr "Tyska" + +#: paperless/settings.py:610 +msgid "Greek" +msgstr "" + +#: paperless/settings.py:611 +msgid "English (GB)" +msgstr "Engelska (GB)" + +#: paperless/settings.py:612 +msgid "Spanish" +msgstr "Spanska" + +#: paperless/settings.py:613 +msgid "Finnish" +msgstr "Finska" + +#: paperless/settings.py:614 +msgid "French" +msgstr "Franska" + +#: paperless/settings.py:615 +msgid "Hungarian" +msgstr "" + +#: paperless/settings.py:616 +msgid "Italian" +msgstr "Italienska" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "Luxemburgiska" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 msgid "Dutch" msgstr "Holländska" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Polska" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portugisiska (Brasilien)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portugisiska" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Rumänska" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Ryska" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Slovakiska" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Slovenska" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Serbiska" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Svenska" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Turkiska" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukrainiska" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Kinesiska (förenklad)" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx administration" diff --git a/src/locale/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po index 8e6a2717b..10b2ed142 100644 --- a/src/locale/th_TH/LC_MESSAGES/django.po +++ b/src/locale/th_TH/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -25,27 +25,27 @@ msgstr "เอกสาร" msgid "owner" msgstr "เจ้าของ" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "ไม่ใช้งาน" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "คำใดคำหนึ่ง" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "ทุกคำ" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "ตรงกันทุกประการ" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Regular expression" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Fuzzy word" @@ -53,20 +53,20 @@ msgstr "Fuzzy word" msgid "Automatic" msgstr "อัตโนมัติ" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "ชื่อ" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "การจำแนก" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "วิธีการจำแนก" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "ไม่คำนึงถึงตัวพิมพ์เล็ก-ใหญ่" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "อันดับ" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "ประมวลผลเอกสารที่ชื่อไฟล์ตรงกับที่ระบุ (หากมี) โดยไม่สนใจอักษรพิมพ์ใหญ่-เล็ก และสามารถระบุแบบ wildcard ได้เช่น .pdf หรือ *invoice*" -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "กำหนดแท็กนี้" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "กำหนดประเภทเอกสารนี้" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "กำหนดผู้เขียนนี้" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "กำหนดแท็กนี้" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "กำหนดประเภทเอกสารนี้" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "กำหนดผู้เขียนนี้" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "อันดับ" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Regular expression ไม่ถูกต้อง : %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "สีไม่ถูกต้อง" -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "ไม่รองรับไฟล์ประเภท %(type)s" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "ตรวจพบตัวแปรไม่ถูกต้อง" @@ -854,135 +910,286 @@ msgstr "อีเมล" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "ภาษาอังกฤษ (สหรัฐฯ)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "ภาษาอาหรับ" - -#: paperless/settings.py:588 -msgid "Afrikaans" -msgstr "ภาษาอาฟรีกานส์" - -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "ภาษาเบลารุส" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "ภาษาคาตาลัน" +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "ภาษาเช็ก" +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" -#: paperless/settings.py:593 -msgid "Danish" -msgstr "ภาษาเดนมาร์ก" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:594 -msgid "German" -msgstr "ภาษาเยอรมัน" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:595 -msgid "Greek" -msgstr "ภาษากรีก" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "ภาษาอังกฤษ (สหราชอาณาจักร)" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "ภาษาสเปน" +#: paperless/models.py:40 +msgid "force" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "ภาษาฟินแลนด์" +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "ภาษาฝรั่งเศส" +#: paperless/models.py:49 +msgid "never" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 +msgid "English (US)" +msgstr "ภาษาอังกฤษ (สหรัฐฯ)" + +#: paperless/settings.py:602 +msgid "Arabic" +msgstr "ภาษาอาหรับ" + +#: paperless/settings.py:603 +msgid "Afrikaans" +msgstr "ภาษาอาฟรีกานส์" + +#: paperless/settings.py:604 +msgid "Belarusian" +msgstr "ภาษาเบลารุส" + +#: paperless/settings.py:605 +msgid "Bulgarian" +msgstr "" + +#: paperless/settings.py:606 +msgid "Catalan" +msgstr "ภาษาคาตาลัน" + +#: paperless/settings.py:607 +msgid "Czech" +msgstr "ภาษาเช็ก" + +#: paperless/settings.py:608 +msgid "Danish" +msgstr "ภาษาเดนมาร์ก" + +#: paperless/settings.py:609 +msgid "German" +msgstr "ภาษาเยอรมัน" + +#: paperless/settings.py:610 +msgid "Greek" +msgstr "ภาษากรีก" + +#: paperless/settings.py:611 +msgid "English (GB)" +msgstr "ภาษาอังกฤษ (สหราชอาณาจักร)" + +#: paperless/settings.py:612 +msgid "Spanish" +msgstr "ภาษาสเปน" + +#: paperless/settings.py:613 +msgid "Finnish" +msgstr "ภาษาฟินแลนด์" + +#: paperless/settings.py:614 +msgid "French" +msgstr "ภาษาฝรั่งเศส" + +#: paperless/settings.py:615 +msgid "Hungarian" +msgstr "" + +#: paperless/settings.py:616 msgid "Italian" msgstr "ภาษาอิตาลี" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "ภาษาลักเซมเบิร์ก" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "ภาษานอร์เวย์" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "ภาษาดัตช์" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "ภาษาโปแลนด์" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "ภาษาโปรตุเกส (บราซิล)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "ภาษาโปรตุเกส" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "ภาษาโรมาเนีย" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "ภาษารัสเซีย" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "ภาษาสโลวาเกีย" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "ภาษาสโลเวเนีย" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "ภาษาเซอร์เบีย" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "ภาษาสวีเดน" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "ภาษาตุรกี" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "ภาษายูเครน" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "ภาษาจีน (ตัวย่อ)" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "การจัดการ Paperless-ngx" diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po index 121e0bbd1..d99ba5d80 100644 --- a/src/locale/tr_TR/LC_MESSAGES/django.po +++ b/src/locale/tr_TR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -25,27 +25,27 @@ msgstr "Belgeler" msgid "owner" msgstr "sahibi" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Hiçbiri" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Herhangi bir kelime" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Tüm Kelimeler" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Tam eşleşme" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Düzenli ifade" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Fuzzy Kelime" @@ -53,20 +53,20 @@ msgstr "Fuzzy Kelime" msgid "Automatic" msgstr "Otomatik" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "ad" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "eşleme" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "eşleştirme algoritması" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "duyarsızdır" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "sıra" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "dosya adı ara" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Yalnızca belirtilmişse bu dosya ismiyla tamamen eşleşen belgeleri tüket. *.pdf veya *fatura* gibi joker karakterlere izin verilir. Büyük küçük yazılımına duyarsız." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" -msgstr "başlık at" - -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "bu etiketi atan" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "bu dosya türünü atan" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "bu muhabiri atan" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "başlık at" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "bu etiketi atan" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "bu dosya türünü atan" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "bu muhabiri atan" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "sıra" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Hatalı Düzenli İfade: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Geçersiz renk." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Dosya türü %(type)s desteklenmiyor" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Geçersiz değişken algılandı." @@ -854,135 +910,286 @@ msgstr "E-posta" msgid "Send me instructions!" msgstr "Talimatları gönder!" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "İngilizce (Birleşik Devletler)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Arapça" - -#: paperless/settings.py:588 -msgid "Afrikaans" -msgstr "Afrika dili" - -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Belarusça" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "Katalanca" +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Çekçe" +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Danca" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:594 -msgid "German" -msgstr "Almanca" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:595 -msgid "Greek" -msgstr "Yunanca" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "İngilizce (GB)" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "İspanyolca" +#: paperless/models.py:40 +msgid "force" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "Fince" +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Fransızca" +#: paperless/models.py:49 +msgid "never" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 +msgid "English (US)" +msgstr "İngilizce (Birleşik Devletler)" + +#: paperless/settings.py:602 +msgid "Arabic" +msgstr "Arapça" + +#: paperless/settings.py:603 +msgid "Afrikaans" +msgstr "Afrika dili" + +#: paperless/settings.py:604 +msgid "Belarusian" +msgstr "Belarusça" + +#: paperless/settings.py:605 +msgid "Bulgarian" +msgstr "" + +#: paperless/settings.py:606 +msgid "Catalan" +msgstr "Katalanca" + +#: paperless/settings.py:607 +msgid "Czech" +msgstr "Çekçe" + +#: paperless/settings.py:608 +msgid "Danish" +msgstr "Danca" + +#: paperless/settings.py:609 +msgid "German" +msgstr "Almanca" + +#: paperless/settings.py:610 +msgid "Greek" +msgstr "Yunanca" + +#: paperless/settings.py:611 +msgid "English (GB)" +msgstr "İngilizce (GB)" + +#: paperless/settings.py:612 +msgid "Spanish" +msgstr "İspanyolca" + +#: paperless/settings.py:613 +msgid "Finnish" +msgstr "Fince" + +#: paperless/settings.py:614 +msgid "French" +msgstr "Fransızca" + +#: paperless/settings.py:615 +msgid "Hungarian" +msgstr "" + +#: paperless/settings.py:616 msgid "Italian" msgstr "İtalyanca" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Lüksemburgca" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norveçce" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Hollandaca" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Polonyaca" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Portekizce (Brezilya)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Portekizce" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Romence" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Rusça" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Slovakça" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Slovakça" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Sırpça" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "İsveççe" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Türkçe" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukraynaca" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Basitleştirilmiş Çince" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx yönetimi" diff --git a/src/locale/uk_UA/LC_MESSAGES/django.po b/src/locale/uk_UA/LC_MESSAGES/django.po index 2d2015502..fabf8ad7e 100644 --- a/src/locale/uk_UA/LC_MESSAGES/django.po +++ b/src/locale/uk_UA/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" @@ -25,27 +25,27 @@ msgstr "Документи" msgid "owner" msgstr "власник" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Немає" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Будь-яке слово" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Усі слова" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Точна відповідність" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Регулярний вираз" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "Нечіткий пошук" @@ -53,20 +53,20 @@ msgstr "Нечіткий пошук" msgid "Automatic" msgstr "Автоматично" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "назва" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "відповідність" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "алгоритм зіставляння" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "нечутливий до регістру" @@ -385,47 +385,47 @@ msgstr "шлях зберігання" #: documents/models.py:448 msgid "has correspondent in" -msgstr "" +msgstr "має кореспондента в" #: documents/models.py:449 msgid "does not have correspondent in" -msgstr "" +msgstr "не має кореспондента в" #: documents/models.py:450 msgid "has document type in" -msgstr "" +msgstr "має тип документа в" #: documents/models.py:451 msgid "does not have document type in" -msgstr "" +msgstr "не має типу документа в" #: documents/models.py:452 msgid "has storage path in" -msgstr "" +msgstr "має шлях до сховища в" #: documents/models.py:453 msgid "does not have storage path in" -msgstr "" +msgstr "не має шляху до сховища в" #: documents/models.py:454 msgid "owner is" -msgstr "" +msgstr "власник є" #: documents/models.py:455 msgid "has owner in" -msgstr "" +msgstr "має власника в" #: documents/models.py:456 msgid "does not have owner" -msgstr "" +msgstr "не має власника" #: documents/models.py:457 msgid "does not have owner in" -msgstr "" +msgstr "не має власника в" #: documents/models.py:458 msgid "has custom field value" -msgstr "" +msgstr "має значення спеціального поля" #: documents/models.py:459 msgid "is shared by me" @@ -521,7 +521,7 @@ msgstr "Дані, які повернені завданням" #: documents/models.py:652 msgid "Note for the document" -msgstr "" +msgstr "Примітка до документа" #: documents/models.py:676 msgid "user" @@ -529,7 +529,7 @@ msgstr "користувач" #: documents/models.py:681 msgid "note" -msgstr "" +msgstr "примітка" #: documents/models.py:682 msgid "notes" @@ -553,35 +553,35 @@ msgstr "" #: documents/models.py:741 msgid "share link" -msgstr "" +msgstr "поділитися посиланням" #: documents/models.py:742 msgid "share links" -msgstr "" +msgstr "поділитися посиланнями" #: documents/models.py:754 msgid "String" -msgstr "" +msgstr "Текст" #: documents/models.py:755 msgid "URL" -msgstr "" +msgstr "URL-адреса" #: documents/models.py:756 msgid "Date" -msgstr "" +msgstr "Дата" #: documents/models.py:757 msgid "Boolean" -msgstr "" +msgstr "Логічне значення" #: documents/models.py:758 msgid "Integer" -msgstr "" +msgstr "Ціле число" #: documents/models.py:759 msgid "Float" -msgstr "" +msgstr "З рухомою комою" #: documents/models.py:760 msgid "Monetary" @@ -589,19 +589,19 @@ msgstr "" #: documents/models.py:761 msgid "Document Link" -msgstr "" +msgstr "Посилання на документ" #: documents/models.py:773 msgid "data type" -msgstr "" +msgstr "тип даних" #: documents/models.py:781 msgid "custom field" -msgstr "" +msgstr "користувацьке поле" #: documents/models.py:782 msgid "custom fields" -msgstr "" +msgstr "користувацькі поля" #: documents/models.py:844 msgid "custom field instance" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "Документ додано" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "Документ оновлено" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 -msgid "Api Upload" -msgstr "" - -#: documents/models.py:895 -msgid "Mail Fetch" -msgstr "" - -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "порядок" - #: documents/models.py:908 -msgid "filter path" +msgid "Api Upload" +msgstr "Завантаження API" + +#: documents/models.py:909 +msgid "Mail Fetch" +msgstr "Завантаження пошти" + +#: documents/models.py:912 +msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:913 +#: documents/models.py:924 +msgid "filter path" +msgstr "шлях фільтра" + +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "Обробляти лише ті документи, які повністю відповідають назві файлу, якщо вказано. Шаблони, такі як *.pdf чи *invoice* дозволені. Без врахування регістру." -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" -msgstr "призначити назву" - -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" -msgstr "призначити цей тег" - -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" -msgstr "призначити цей тип документа" - -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "призначити цього кореспондента" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "призначити назву" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "призначити цей тег" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "призначити цей тип документа" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "призначити цього кореспондента" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "дія робочого циклу" + +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "дії робочого циклу" + +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "порядок" + +#: documents/models.py:1107 +msgid "triggers" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "" +#: documents/models.py:1114 +msgid "actions" +msgstr "дії" -#: documents/serialisers.py:105 +#: documents/models.py:1117 +msgid "enabled" +msgstr "ввімкнено" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Неправильний регулярний вираз: %(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "Неправильний колір." -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "Тип файлу %(type)s не підтримується" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "Виявлено неправильну змінну." @@ -763,7 +819,7 @@ msgstr "" #: documents/templates/registration/login.html:52 msgid "Share link has expired." -msgstr "" +msgstr "Термін дії посилання закінчився." #: documents/templates/registration/login.html:55 msgid "Username" @@ -779,44 +835,44 @@ msgstr "Увійти" #: documents/templates/registration/login.html:70 msgid "Forgot your password?" -msgstr "" +msgstr "Забули пароль?" #: documents/templates/registration/password_reset_complete.html:14 msgid "Paperless-ngx reset password complete" -msgstr "" +msgstr "Скидання пароля Paperless-ngx завершено" #: documents/templates/registration/password_reset_complete.html:40 msgid "Password reset complete." -msgstr "" +msgstr "Скидання пароля завершено." #: documents/templates/registration/password_reset_complete.html:42 #, python-format msgid "Your new password has been set. You can now log in" -msgstr "" +msgstr "Ваш новий пароль встановлено. Тепер ви можете увійти в систему" #: documents/templates/registration/password_reset_confirm.html:14 msgid "Paperless-ngx reset password confirmation" -msgstr "" +msgstr "Підтвердження скидання пароля Paperless-ngx" #: documents/templates/registration/password_reset_confirm.html:42 msgid "Set a new password." -msgstr "" +msgstr "Встановити новий пароль." #: documents/templates/registration/password_reset_confirm.html:46 msgid "Passwords did not match or too weak. Try again." -msgstr "" +msgstr "Паролі не збігаються або надто слабкі. Спробуйте ще раз." #: documents/templates/registration/password_reset_confirm.html:49 msgid "New Password" -msgstr "" +msgstr "Новий пароль" #: documents/templates/registration/password_reset_confirm.html:50 msgid "Confirm Password" -msgstr "" +msgstr "Підтвердьте пароль" #: documents/templates/registration/password_reset_confirm.html:61 msgid "Change my password" -msgstr "" +msgstr "Змінити мій пароль" #: documents/templates/registration/password_reset_confirm.html:65 msgid "request a new password reset" @@ -828,11 +884,11 @@ msgstr "" #: documents/templates/registration/password_reset_done.html:40 msgid "Check your inbox." -msgstr "" +msgstr "Перевірте вашу поштову скриньку." #: documents/templates/registration/password_reset_done.html:41 msgid "We've emailed you instructions for setting your password. You should receive the email shortly!" -msgstr "" +msgstr "Ми надіслали вам на електронну пошту інструкції щодо встановлення паролю. Ви маєте отримати лист найближчим часом!" #: documents/templates/registration/password_reset_form.html:14 msgid "Paperless-ngx reset password request" @@ -854,135 +910,286 @@ msgstr "Ел. пошта" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "Paperless" -#: paperless/settings.py:586 -msgid "English (US)" -msgstr "Англійська (США)" - -#: paperless/settings.py:587 -msgid "Arabic" -msgstr "Арабська" - -#: paperless/settings.py:588 -msgid "Afrikaans" -msgstr "Африкаанс" - -#: paperless/settings.py:589 -msgid "Belarusian" -msgstr "Білоруська" - -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" -msgstr "Каталонська" +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" -#: paperless/settings.py:592 -msgid "Czech" -msgstr "Чеська" +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" -#: paperless/settings.py:593 -msgid "Danish" -msgstr "Данська" +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" -#: paperless/settings.py:594 -msgid "German" -msgstr "Німецька" +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" -#: paperless/settings.py:595 -msgid "Greek" -msgstr "Грецька" +#: paperless/models.py:38 +msgid "skip" +msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" -msgstr "Англійська (Велика Британія)" +#: paperless/models.py:39 +msgid "redo" +msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" -msgstr "Іспанська" +#: paperless/models.py:40 +msgid "force" +msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" -msgstr "Фінська" +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" -#: paperless/settings.py:599 -msgid "French" -msgstr "Французька" +#: paperless/models.py:49 +msgid "never" +msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "RGB" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "Сірий" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "CMYK" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 +msgid "English (US)" +msgstr "Англійська (США)" + +#: paperless/settings.py:602 +msgid "Arabic" +msgstr "Арабська" + +#: paperless/settings.py:603 +msgid "Afrikaans" +msgstr "Африкаанс" + +#: paperless/settings.py:604 +msgid "Belarusian" +msgstr "Білоруська" + +#: paperless/settings.py:605 +msgid "Bulgarian" +msgstr "Болгарська" + +#: paperless/settings.py:606 +msgid "Catalan" +msgstr "Каталонська" + +#: paperless/settings.py:607 +msgid "Czech" +msgstr "Чеська" + +#: paperless/settings.py:608 +msgid "Danish" +msgstr "Данська" + +#: paperless/settings.py:609 +msgid "German" +msgstr "Німецька" + +#: paperless/settings.py:610 +msgid "Greek" +msgstr "Грецька" + +#: paperless/settings.py:611 +msgid "English (GB)" +msgstr "Англійська (Велика Британія)" + +#: paperless/settings.py:612 +msgid "Spanish" +msgstr "Іспанська" + +#: paperless/settings.py:613 +msgid "Finnish" +msgstr "Фінська" + +#: paperless/settings.py:614 +msgid "French" +msgstr "Французька" + +#: paperless/settings.py:615 +msgid "Hungarian" +msgstr "Угорська" + +#: paperless/settings.py:616 msgid "Italian" msgstr "Італійська" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "Люксембурзька" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Норвезька" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "Нідерландська" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "Польська" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "Португальська (Бразилія)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "Португальська" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "Румунська" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "Російська" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Словацька" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "Словенська" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "Сербська" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "Шведська" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "Турецька" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Українська" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "Китайська спрощена" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Адміністрування Paperless-ngx" diff --git a/src/locale/vi_VN/LC_MESSAGES/django.po b/src/locale/vi_VN/LC_MESSAGES/django.po index 527428c9e..5d14df4a5 100644 --- a/src/locale/vi_VN/LC_MESSAGES/django.po +++ b/src/locale/vi_VN/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -25,27 +25,27 @@ msgstr "Tài liệu" msgid "owner" msgstr "chủ sở hữu" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "Không có" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "Từ bất kỳ" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "Tất cả từ" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "Chính xác" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "Biểu hiện bình thường" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "từ fuzzy" @@ -53,20 +53,20 @@ msgstr "từ fuzzy" msgid "Automatic" msgstr "Tự động" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "tên" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "phù hợp" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "thuật toán tìm kiếm" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "không phân biệt chữ hoa/thường" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" +#: documents/models.py:912 +msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" +#: documents/models.py:989 +msgid "workflow triggers" msgstr "" -#: documents/models.py:977 -msgid "assign this storage path" -msgstr "" - -#: documents/models.py:986 -msgid "assign this owner" -msgstr "" - -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "" @@ -854,135 +910,286 @@ msgstr "" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "" -#: paperless/settings.py:586 -msgid "English (US)" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:587 -msgid "Arabic" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" +#: paperless/models.py:28 +msgid "pdfa-2" msgstr "" -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:29 +msgid "pdfa-3" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" +#: paperless/models.py:38 +msgid "skip" msgstr "" -#: paperless/settings.py:592 -msgid "Czech" +#: paperless/models.py:39 +msgid "redo" msgstr "" -#: paperless/settings.py:593 -msgid "Danish" +#: paperless/models.py:40 +msgid "force" msgstr "" -#: paperless/settings.py:594 -msgid "German" +#: paperless/models.py:41 +msgid "skip_noarchive" msgstr "" -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:49 +msgid "never" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" +#: paperless/models.py:50 +msgid "with_text" msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" +#: paperless/models.py:51 +msgid "always" msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" +#: paperless/models.py:59 +msgid "clean" msgstr "" -#: paperless/settings.py:599 -msgid "French" +#: paperless/models.py:60 +msgid "clean-final" msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" +msgid "English (US)" msgstr "" #: paperless/settings.py:602 -msgid "Luxembourgish" +msgid "Arabic" msgstr "" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" +msgid "Belarusian" msgstr "" #: paperless/settings.py:605 -msgid "Polish" +msgid "Bulgarian" msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" +msgid "Catalan" msgstr "" #: paperless/settings.py:607 -msgid "Portuguese" +msgid "Czech" msgstr "" #: paperless/settings.py:608 -msgid "Romanian" +msgid "Danish" msgstr "" #: paperless/settings.py:609 -msgid "Russian" +msgid "German" msgstr "" #: paperless/settings.py:610 -msgid "Slovak" +msgid "Greek" msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" +msgid "English (GB)" msgstr "" #: paperless/settings.py:612 -msgid "Serbian" +msgid "Spanish" msgstr "" #: paperless/settings.py:613 -msgid "Swedish" +msgid "Finnish" msgstr "" #: paperless/settings.py:614 -msgid "Turkish" +msgid "French" msgstr "" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "" diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po index c0b0f5787..620101d79 100644 --- a/src/locale/zh_CN/LC_MESSAGES/django.po +++ b/src/locale/zh_CN/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-28 12:09\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -25,27 +25,27 @@ msgstr "文档" msgid "owner" msgstr "所有者" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "无" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "任意单词" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "所有单词" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "精确匹配" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "正则表达式" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "模糊单词" @@ -53,20 +53,20 @@ msgstr "模糊单词" msgid "Automatic" msgstr "自动" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "名称" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "匹配" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "匹配算法" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "忽略大小写" @@ -425,7 +425,7 @@ msgstr "没有所有者" #: documents/models.py:458 msgid "has custom field value" -msgstr "" +msgstr "添加自定义字段值" #: documents/models.py:459 msgid "is shared by me" @@ -611,113 +611,169 @@ msgstr "自定义字段实例" msgid "custom field instances" msgstr "自定义字段实例" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "消费文件夹" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "Api上传" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "邮件获取" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" -msgstr "排序" +#: documents/models.py:912 +msgid "Workflow Trigger Type" +msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "过滤路径" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "只消耗匹配了指定路径的文档。路径指定中允许使用*作为通配符,大小写不敏感。" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "过滤文件名" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "如果指定了文件名,只处理完全匹配此文件名的文档。允许使用通配符,如 *.pdf 或 *发票*。不区分大小写。" -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "从邮件规则中过滤文档" -#: documents/models.py:940 +#: documents/models.py:968 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:976 +msgid "has this document type" +msgstr "" + +#: documents/models.py:984 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:988 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:989 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:997 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 msgid "assign title" msgstr "指定标题" -#: documents/models.py:945 +#: documents/models.py:1011 msgid "Assign a document title, can include some placeholders, see documentation." msgstr "指定一个文档标题,可以包含一些占位符,参见文档。" -#: documents/models.py:953 paperless_mail/models.py:216 +#: documents/models.py:1019 paperless_mail/models.py:216 msgid "assign this tag" msgstr "分配此标签" -#: documents/models.py:961 paperless_mail/models.py:224 +#: documents/models.py:1027 paperless_mail/models.py:224 msgid "assign this document type" msgstr "分配此文档类型" -#: documents/models.py:969 paperless_mail/models.py:238 +#: documents/models.py:1035 paperless_mail/models.py:238 msgid "assign this correspondent" msgstr "分配此联系人" -#: documents/models.py:977 +#: documents/models.py:1043 msgid "assign this storage path" msgstr "指定存储路径" -#: documents/models.py:986 +#: documents/models.py:1052 msgid "assign this owner" msgstr "指定所有者" -#: documents/models.py:993 +#: documents/models.py:1059 msgid "grant view permissions to these users" msgstr "为这些用户授予观看权限" -#: documents/models.py:1000 +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "为这些用户组授予观看权限" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "为这些用户授予修改权限" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "为这些用户组授予修改权限" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "分配这些自定义字段" -#: documents/models.py:1025 -msgid "consumption template" -msgstr "消费模板" +#: documents/models.py:1091 +msgid "workflow action" +msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" -msgstr "消费模板" +#: documents/models.py:1092 +msgid "workflow actions" +msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "排序" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "无效的正则表达式:%(error)s" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "无效的颜色" -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "不支持文件类型 %(type)s" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "检测到无效变量。" @@ -854,135 +910,286 @@ msgstr "电子邮件" msgid "Send me instructions!" msgstr "向为发送说明" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "无纸版" -#: paperless/settings.py:586 +#: paperless/models.py:25 +msgid "pdf" +msgstr "" + +#: paperless/models.py:26 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:38 +msgid "skip" +msgstr "" + +#: paperless/models.py:39 +msgid "redo" +msgstr "" + +#: paperless/models.py:40 +msgid "force" +msgstr "" + +#: paperless/models.py:41 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:49 +msgid "never" +msgstr "" + +#: paperless/models.py:50 +msgid "with_text" +msgstr "" + +#: paperless/models.py:51 +msgid "always" +msgstr "" + +#: paperless/models.py:59 +msgid "clean" +msgstr "" + +#: paperless/models.py:60 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:601 msgid "English (US)" msgstr "英语(美国)" -#: paperless/settings.py:587 +#: paperless/settings.py:602 msgid "Arabic" msgstr "阿拉伯语" -#: paperless/settings.py:588 +#: paperless/settings.py:603 msgid "Afrikaans" msgstr "Afrikaans 荷兰语" -#: paperless/settings.py:589 +#: paperless/settings.py:604 msgid "Belarusian" msgstr "白俄罗斯语" -#: paperless/settings.py:590 +#: paperless/settings.py:605 msgid "Bulgarian" msgstr "保加利亚语" -#: paperless/settings.py:591 +#: paperless/settings.py:606 msgid "Catalan" msgstr "Catalan 加泰罗尼亚语" -#: paperless/settings.py:592 +#: paperless/settings.py:607 msgid "Czech" msgstr "捷克语" -#: paperless/settings.py:593 +#: paperless/settings.py:608 msgid "Danish" msgstr "丹麦语" -#: paperless/settings.py:594 +#: paperless/settings.py:609 msgid "German" msgstr "德语" -#: paperless/settings.py:595 +#: paperless/settings.py:610 msgid "Greek" msgstr "Greek 希腊语" -#: paperless/settings.py:596 +#: paperless/settings.py:611 msgid "English (GB)" msgstr "英语(英国)" -#: paperless/settings.py:597 +#: paperless/settings.py:612 msgid "Spanish" msgstr "西班牙语" -#: paperless/settings.py:598 +#: paperless/settings.py:613 msgid "Finnish" msgstr "已完成" -#: paperless/settings.py:599 +#: paperless/settings.py:614 msgid "French" msgstr "法语" -#: paperless/settings.py:600 +#: paperless/settings.py:615 msgid "Hungarian" msgstr "匈牙利语" -#: paperless/settings.py:601 +#: paperless/settings.py:616 msgid "Italian" msgstr "意大利语" -#: paperless/settings.py:602 +#: paperless/settings.py:617 msgid "Luxembourgish" msgstr "卢森堡语" -#: paperless/settings.py:603 +#: paperless/settings.py:618 msgid "Norwegian" msgstr "Norwegian 挪威语" -#: paperless/settings.py:604 +#: paperless/settings.py:619 msgid "Dutch" msgstr "荷兰语" -#: paperless/settings.py:605 +#: paperless/settings.py:620 msgid "Polish" msgstr "波兰语" -#: paperless/settings.py:606 +#: paperless/settings.py:621 msgid "Portuguese (Brazil)" msgstr "葡萄牙语 (巴西)" -#: paperless/settings.py:607 +#: paperless/settings.py:622 msgid "Portuguese" msgstr "葡萄牙语" -#: paperless/settings.py:608 +#: paperless/settings.py:623 msgid "Romanian" msgstr "罗马尼亚语" -#: paperless/settings.py:609 +#: paperless/settings.py:624 msgid "Russian" msgstr "俄语" -#: paperless/settings.py:610 +#: paperless/settings.py:625 msgid "Slovak" msgstr "Slovak 斯洛伐克语" -#: paperless/settings.py:611 +#: paperless/settings.py:626 msgid "Slovenian" msgstr "斯洛语尼亚语" -#: paperless/settings.py:612 +#: paperless/settings.py:627 msgid "Serbian" msgstr "塞尔维亚语" -#: paperless/settings.py:613 +#: paperless/settings.py:628 msgid "Swedish" msgstr "瑞典语" -#: paperless/settings.py:614 +#: paperless/settings.py:629 msgid "Turkish" msgstr "土耳其语" -#: paperless/settings.py:615 +#: paperless/settings.py:630 msgid "Ukrainian" msgstr "Ukrainian 乌克兰语" -#: paperless/settings.py:616 +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "简体中文" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "Paperless-ngx 管理" diff --git a/src/locale/zh_TW/LC_MESSAGES/django.po b/src/locale/zh_TW/LC_MESSAGES/django.po index e615e097c..f83a3acee 100644 --- a/src/locale/zh_TW/LC_MESSAGES/django.po +++ b/src/locale/zh_TW/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2023-12-09 10:53-0800\n" -"PO-Revision-Date: 2023-12-19 20:45\n" +"POT-Creation-Date: 2024-01-05 21:26-0800\n" +"PO-Revision-Date: 2024-01-06 05:27\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" @@ -25,27 +25,27 @@ msgstr "文件" msgid "owner" msgstr "擁有者" -#: documents/models.py:53 +#: documents/models.py:53 documents/models.py:894 msgid "None" msgstr "無" -#: documents/models.py:54 +#: documents/models.py:54 documents/models.py:895 msgid "Any word" msgstr "任何字" -#: documents/models.py:55 +#: documents/models.py:55 documents/models.py:896 msgid "All words" msgstr "所有字詞" -#: documents/models.py:56 +#: documents/models.py:56 documents/models.py:897 msgid "Exact match" msgstr "完全符合" -#: documents/models.py:57 +#: documents/models.py:57 documents/models.py:898 msgid "Regular expression" msgstr "" -#: documents/models.py:58 +#: documents/models.py:58 documents/models.py:899 msgid "Fuzzy word" msgstr "模糊詞" @@ -53,20 +53,20 @@ msgstr "模糊詞" msgid "Automatic" msgstr "自動" -#: documents/models.py:62 documents/models.py:402 documents/models.py:897 +#: documents/models.py:62 documents/models.py:402 documents/models.py:1099 #: paperless_mail/models.py:18 paperless_mail/models.py:93 msgid "name" msgstr "名稱" -#: documents/models.py:64 +#: documents/models.py:64 documents/models.py:955 msgid "match" msgstr "比對" -#: documents/models.py:67 +#: documents/models.py:67 documents/models.py:958 msgid "matching algorithm" msgstr "比對演算法" -#: documents/models.py:72 +#: documents/models.py:72 documents/models.py:963 msgid "is insensitive" msgstr "不區分大小寫" @@ -611,113 +611,169 @@ msgstr "" msgid "custom field instances" msgstr "" -#: documents/models.py:893 +#: documents/models.py:902 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:903 +msgid "Document Added" +msgstr "" + +#: documents/models.py:904 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:907 msgid "Consume Folder" msgstr "" -#: documents/models.py:894 +#: documents/models.py:908 msgid "Api Upload" msgstr "" -#: documents/models.py:895 +#: documents/models.py:909 msgid "Mail Fetch" msgstr "" -#: documents/models.py:899 paperless_mail/models.py:95 -msgid "order" +#: documents/models.py:912 +msgid "Workflow Trigger Type" msgstr "" -#: documents/models.py:908 +#: documents/models.py:924 msgid "filter path" msgstr "" -#: documents/models.py:913 +#: documents/models.py:929 msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." msgstr "" -#: documents/models.py:920 +#: documents/models.py:936 msgid "filter filename" msgstr "" -#: documents/models.py:925 paperless_mail/models.py:148 +#: documents/models.py:941 paperless_mail/models.py:148 msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." msgstr "" -#: documents/models.py:936 +#: documents/models.py:952 msgid "filter documents from this mail rule" msgstr "" -#: documents/models.py:940 -msgid "assign title" +#: documents/models.py:968 +msgid "has these tag(s)" msgstr "" -#: documents/models.py:945 -msgid "Assign a document title, can include some placeholders, see documentation." +#: documents/models.py:976 +msgid "has this document type" msgstr "" -#: documents/models.py:953 paperless_mail/models.py:216 -msgid "assign this tag" +#: documents/models.py:984 +msgid "has this correspondent" msgstr "" -#: documents/models.py:961 paperless_mail/models.py:224 -msgid "assign this document type" +#: documents/models.py:988 +msgid "workflow trigger" msgstr "" -#: documents/models.py:969 paperless_mail/models.py:238 -msgid "assign this correspondent" -msgstr "指派這個聯繫者" - -#: documents/models.py:977 -msgid "assign this storage path" +#: documents/models.py:989 +msgid "workflow triggers" msgstr "" -#: documents/models.py:986 -msgid "assign this owner" -msgstr "" - -#: documents/models.py:993 -msgid "grant view permissions to these users" +#: documents/models.py:997 +msgid "Assignment" msgstr "" #: documents/models.py:1000 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1006 +msgid "assign title" +msgstr "" + +#: documents/models.py:1011 +msgid "Assign a document title, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1019 paperless_mail/models.py:216 +msgid "assign this tag" +msgstr "" + +#: documents/models.py:1027 paperless_mail/models.py:224 +msgid "assign this document type" +msgstr "" + +#: documents/models.py:1035 paperless_mail/models.py:238 +msgid "assign this correspondent" +msgstr "指派這個聯繫者" + +#: documents/models.py:1043 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1052 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1059 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1066 msgid "grant view permissions to these groups" msgstr "" -#: documents/models.py:1007 +#: documents/models.py:1073 msgid "grant change permissions to these users" msgstr "" -#: documents/models.py:1014 +#: documents/models.py:1080 msgid "grant change permissions to these groups" msgstr "" -#: documents/models.py:1021 +#: documents/models.py:1087 msgid "assign these custom fields" msgstr "" -#: documents/models.py:1025 -msgid "consumption template" +#: documents/models.py:1091 +msgid "workflow action" msgstr "" -#: documents/models.py:1026 -msgid "consumption templates" +#: documents/models.py:1092 +msgid "workflow actions" msgstr "" -#: documents/serialisers.py:105 +#: documents/models.py:1101 paperless_mail/models.py:95 +msgid "order" +msgstr "" + +#: documents/models.py:1107 +msgid "triggers" +msgstr "" + +#: documents/models.py:1114 +msgid "actions" +msgstr "" + +#: documents/models.py:1117 +msgid "enabled" +msgstr "" + +#: documents/serialisers.py:111 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:399 +#: documents/serialisers.py:405 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:865 +#: documents/serialisers.py:999 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:962 +#: documents/serialisers.py:1102 msgid "Invalid variable detected." msgstr "" @@ -854,135 +910,286 @@ msgstr "" msgid "Send me instructions!" msgstr "" +#: documents/validators.py:17 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:22 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:27 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + #: paperless/apps.py:10 msgid "Paperless" msgstr "" -#: paperless/settings.py:586 -msgid "English (US)" +#: paperless/models.py:25 +msgid "pdf" msgstr "" -#: paperless/settings.py:587 -msgid "Arabic" +#: paperless/models.py:26 +msgid "pdfa" msgstr "" -#: paperless/settings.py:588 -msgid "Afrikaans" +#: paperless/models.py:27 +msgid "pdfa-1" msgstr "" -#: paperless/settings.py:589 -msgid "Belarusian" +#: paperless/models.py:28 +msgid "pdfa-2" msgstr "" -#: paperless/settings.py:590 -msgid "Bulgarian" +#: paperless/models.py:29 +msgid "pdfa-3" msgstr "" -#: paperless/settings.py:591 -msgid "Catalan" +#: paperless/models.py:38 +msgid "skip" msgstr "" -#: paperless/settings.py:592 -msgid "Czech" +#: paperless/models.py:39 +msgid "redo" msgstr "" -#: paperless/settings.py:593 -msgid "Danish" +#: paperless/models.py:40 +msgid "force" msgstr "" -#: paperless/settings.py:594 -msgid "German" +#: paperless/models.py:41 +msgid "skip_noarchive" msgstr "" -#: paperless/settings.py:595 -msgid "Greek" +#: paperless/models.py:49 +msgid "never" msgstr "" -#: paperless/settings.py:596 -msgid "English (GB)" +#: paperless/models.py:50 +msgid "with_text" msgstr "" -#: paperless/settings.py:597 -msgid "Spanish" +#: paperless/models.py:51 +msgid "always" msgstr "" -#: paperless/settings.py:598 -msgid "Finnish" +#: paperless/models.py:59 +msgid "clean" msgstr "" -#: paperless/settings.py:599 -msgid "French" +#: paperless/models.py:60 +msgid "clean-final" msgstr "" -#: paperless/settings.py:600 -msgid "Hungarian" +#: paperless/models.py:61 +msgid "none" +msgstr "" + +#: paperless/models.py:69 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:70 +msgid "RGB" +msgstr "" + +#: paperless/models.py:71 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:72 +msgid "Gray" +msgstr "" + +#: paperless/models.py:73 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:82 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:94 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:100 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:107 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:115 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:123 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:130 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:137 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:140 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:145 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:151 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:157 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:165 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:170 +msgid "paperless application settings" msgstr "" #: paperless/settings.py:601 -msgid "Italian" +msgid "English (US)" msgstr "" #: paperless/settings.py:602 -msgid "Luxembourgish" +msgid "Arabic" msgstr "" #: paperless/settings.py:603 -msgid "Norwegian" +msgid "Afrikaans" msgstr "" #: paperless/settings.py:604 -msgid "Dutch" +msgid "Belarusian" msgstr "" #: paperless/settings.py:605 -msgid "Polish" +msgid "Bulgarian" msgstr "" #: paperless/settings.py:606 -msgid "Portuguese (Brazil)" +msgid "Catalan" msgstr "" #: paperless/settings.py:607 -msgid "Portuguese" +msgid "Czech" msgstr "" #: paperless/settings.py:608 -msgid "Romanian" +msgid "Danish" msgstr "" #: paperless/settings.py:609 -msgid "Russian" +msgid "German" msgstr "" #: paperless/settings.py:610 -msgid "Slovak" +msgid "Greek" msgstr "" #: paperless/settings.py:611 -msgid "Slovenian" +msgid "English (GB)" msgstr "" #: paperless/settings.py:612 -msgid "Serbian" +msgid "Spanish" msgstr "" #: paperless/settings.py:613 -msgid "Swedish" +msgid "Finnish" msgstr "" #: paperless/settings.py:614 -msgid "Turkish" +msgid "French" msgstr "" #: paperless/settings.py:615 -msgid "Ukrainian" +msgid "Hungarian" msgstr "" #: paperless/settings.py:616 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:617 +msgid "Luxembourgish" +msgstr "" + +#: paperless/settings.py:618 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:619 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:620 +msgid "Polish" +msgstr "" + +#: paperless/settings.py:621 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:622 +msgid "Portuguese" +msgstr "" + +#: paperless/settings.py:623 +msgid "Romanian" +msgstr "" + +#: paperless/settings.py:624 +msgid "Russian" +msgstr "" + +#: paperless/settings.py:625 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:626 +msgid "Slovenian" +msgstr "" + +#: paperless/settings.py:627 +msgid "Serbian" +msgstr "" + +#: paperless/settings.py:628 +msgid "Swedish" +msgstr "" + +#: paperless/settings.py:629 +msgid "Turkish" +msgstr "" + +#: paperless/settings.py:630 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:631 msgid "Chinese Simplified" msgstr "" -#: paperless/urls.py:194 +#: paperless/urls.py:205 msgid "Paperless-ngx administration" msgstr "" From fae0e3b4054293ca3e729f565b345ced27f0225b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Fri, 5 Jan 2024 21:35:40 -0800 Subject: [PATCH 33/33] Update api version to v4 --- src-ui/src/environments/environment.prod.ts | 2 +- src-ui/src/environments/environment.ts | 2 +- src/paperless/settings.py | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 0eaa43706..aa7f64c13 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -3,7 +3,7 @@ const base_url = new URL(document.baseURI) export const environment = { production: true, apiBaseUrl: document.baseURI + 'api/', - apiVersion: '3', + apiVersion: '4', appTitle: 'Paperless-ngx', version: '2.2.0-dev', webSocketHost: window.location.host, diff --git a/src-ui/src/environments/environment.ts b/src-ui/src/environments/environment.ts index 10d245f34..fccb8927c 100644 --- a/src-ui/src/environments/environment.ts +++ b/src-ui/src/environments/environment.ts @@ -5,7 +5,7 @@ export const environment = { production: false, apiBaseUrl: 'http://localhost:8000/api/', - apiVersion: '3', + apiVersion: '4', appTitle: 'Paperless-ngx', version: 'DEVELOPMENT', webSocketHost: 'localhost:8000', diff --git a/src/paperless/settings.py b/src/paperless/settings.py index 8185773e7..f2d306bbf 100644 --- a/src/paperless/settings.py +++ b/src/paperless/settings.py @@ -319,7 +319,7 @@ REST_FRAMEWORK = { "DEFAULT_VERSION": "1", # Make sure these are ordered and that the most recent version appears # last - "ALLOWED_VERSIONS": ["1", "2", "3"], + "ALLOWED_VERSIONS": ["1", "2", "3", "4"], } if DEBUG: