From a41dbdd12cc802c436a4126c9f2b889ca5516b9b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sat, 6 Jan 2024 22:43:25 -0800 Subject: [PATCH 01/11] Reset dev version string --- src-ui/src/environments/environment.prod.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 7f46e44d1..ce4e9a189 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -5,7 +5,7 @@ export const environment = { apiBaseUrl: document.baseURI + 'api/', apiVersion: '4', appTitle: 'Paperless-ngx', - version: '2.3.1', + version: '2.3.1-dev', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/', From 86338465fb9760af1933714a73d8426cf3a6de04 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 7 Jan 2024 08:16:58 -0800 Subject: [PATCH 02/11] Fix: workflow edit form loses unsaved changes in v2.3.1 (#5299) --- .../workflow-edit-dialog.component.spec.ts | 3 +- .../workflow-edit-dialog.component.ts | 123 ++++++++++-------- 2 files changed, 72 insertions(+), 54 deletions(-) diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.spec.ts b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.spec.ts index 646ea7201..a901e20ac 100644 --- a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.spec.ts +++ b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.spec.ts @@ -66,7 +66,7 @@ const workflow: Workflow = { ], } -describe('ConsumptionTemplateEditDialogComponent', () => { +describe('WorkflowEditDialogComponent', () => { let component: WorkflowEditDialogComponent let settingsService: SettingsService let fixture: ComponentFixture @@ -219,6 +219,7 @@ describe('ConsumptionTemplateEditDialogComponent', () => { const action1 = workflow.actions[0] const action2 = workflow.actions[1] component.object = workflow + component.ngOnInit() component.onActionDrop({ previousIndex: 0, currentIndex: 1 } as CdkDragDrop< WorkflowAction[] >) diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts index 6778403b9..4844dedc2 100644 --- a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts +++ b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts @@ -19,6 +19,7 @@ import { CustomFieldsService } from 'src/app/services/rest/custom-fields.service import { CustomField } from 'src/app/data/custom-field' import { DocumentSource, + WorkflowTrigger, WorkflowTriggerType, } from 'src/app/data/workflow-trigger' import { @@ -157,7 +158,7 @@ export class WorkflowEditDialogComponent ngOnInit(): void { super.ngOnInit() - this.updateTriggerActionFields() + this.updateAllTriggerActionFields() } get triggerFields(): FormArray { @@ -168,52 +169,66 @@ export class WorkflowEditDialogComponent return this.objectForm.get('actions') as FormArray } - private updateTriggerActionFields(emitEvent: boolean = false) { + private createTriggerField( + trigger: WorkflowTrigger, + emitEvent: boolean = false + ) { + this.triggerFields.push( + new FormGroup({ + id: new FormControl(trigger.id), + type: new FormControl(trigger.type), + sources: new FormControl(trigger.sources), + filter_filename: new FormControl(trigger.filter_filename), + filter_path: new FormControl(trigger.filter_path), + filter_mailrule: new FormControl(trigger.filter_mailrule), + matching_algorithm: new FormControl(trigger.matching_algorithm), + match: new FormControl(trigger.match), + is_insensitive: new FormControl(trigger.is_insensitive), + filter_has_tags: new FormControl(trigger.filter_has_tags), + filter_has_correspondent: new FormControl( + trigger.filter_has_correspondent + ), + filter_has_document_type: new FormControl( + trigger.filter_has_document_type + ), + }), + { emitEvent } + ) + } + + private createActionField( + action: WorkflowAction, + emitEvent: boolean = false + ) { + this.actionFields.push( + new FormGroup({ + id: new FormControl(action.id), + type: new FormControl(action.type), + assign_title: new FormControl(action.assign_title), + assign_tags: new FormControl(action.assign_tags), + assign_owner: new FormControl(action.assign_owner), + assign_document_type: new FormControl(action.assign_document_type), + assign_correspondent: new FormControl(action.assign_correspondent), + assign_storage_path: new FormControl(action.assign_storage_path), + assign_view_users: new FormControl(action.assign_view_users), + assign_view_groups: new FormControl(action.assign_view_groups), + assign_change_users: new FormControl(action.assign_change_users), + assign_change_groups: new FormControl(action.assign_change_groups), + assign_custom_fields: new FormControl(action.assign_custom_fields), + }), + { emitEvent } + ) + } + + private updateAllTriggerActionFields(emitEvent: boolean = false) { this.triggerFields.clear({ emitEvent: false }) this.object?.triggers.forEach((trigger) => { - this.triggerFields.push( - new FormGroup({ - id: new FormControl(trigger.id), - type: new FormControl(trigger.type), - sources: new FormControl(trigger.sources), - filter_filename: new FormControl(trigger.filter_filename), - filter_path: new FormControl(trigger.filter_path), - filter_mailrule: new FormControl(trigger.filter_mailrule), - matching_algorithm: new FormControl(trigger.matching_algorithm), - match: new FormControl(trigger.match), - is_insensitive: new FormControl(trigger.is_insensitive), - filter_has_tags: new FormControl(trigger.filter_has_tags), - filter_has_correspondent: new FormControl( - trigger.filter_has_correspondent - ), - filter_has_document_type: new FormControl( - trigger.filter_has_document_type - ), - }), - { emitEvent } - ) + this.createTriggerField(trigger, emitEvent) }) this.actionFields.clear({ emitEvent: false }) this.object?.actions.forEach((action) => { - this.actionFields.push( - new FormGroup({ - id: new FormControl(action.id), - type: new FormControl(action.type), - assign_title: new FormControl(action.assign_title), - assign_tags: new FormControl(action.assign_tags), - assign_owner: new FormControl(action.assign_owner), - assign_document_type: new FormControl(action.assign_document_type), - assign_correspondent: new FormControl(action.assign_correspondent), - assign_storage_path: new FormControl(action.assign_storage_path), - assign_view_users: new FormControl(action.assign_view_users), - assign_view_groups: new FormControl(action.assign_view_groups), - assign_change_users: new FormControl(action.assign_change_users), - assign_change_groups: new FormControl(action.assign_change_groups), - assign_custom_fields: new FormControl(action.assign_custom_fields), - }), - { emitEvent } - ) + this.createActionField(action, emitEvent) }) } @@ -233,7 +248,7 @@ export class WorkflowEditDialogComponent if (!this.object) { this.object = Object.assign({}, this.objectForm.value) } - this.object.triggers.push({ + const trigger: WorkflowTrigger = { type: WorkflowTriggerType.Consumption, sources: [], filter_filename: null, @@ -245,9 +260,9 @@ export class WorkflowEditDialogComponent matching_algorithm: MATCH_NONE, match: null, is_insensitive: true, - }) - - this.updateTriggerActionFields() + } + this.object.triggers.push(trigger) + this.createTriggerField(trigger) } get actionTypeOptions() { @@ -262,7 +277,7 @@ export class WorkflowEditDialogComponent if (!this.object) { this.object = Object.assign({}, this.objectForm.value) } - this.object.actions.push({ + const action: WorkflowAction = { type: WorkflowActionType.Assignment, assign_title: null, assign_tags: [], @@ -275,19 +290,19 @@ export class WorkflowEditDialogComponent assign_change_users: [], assign_change_groups: [], assign_custom_fields: [], - }) - - this.updateTriggerActionFields() + } + this.object.actions.push(action) + this.createActionField(action) } removeTrigger(index: number) { - this.object.triggers.splice(index, 1) - this.updateTriggerActionFields() + this.object.triggers.splice(index, 1).pop() + this.triggerFields.removeAt(index) } removeAction(index: number) { this.object.actions.splice(index, 1) - this.updateTriggerActionFields() + this.actionFields.removeAt(index) } onActionDrop(event: CdkDragDrop) { @@ -296,8 +311,10 @@ export class WorkflowEditDialogComponent event.previousIndex, event.currentIndex ) + const actionField = this.actionFields.at(event.previousIndex) + this.actionFields.removeAt(event.previousIndex) + this.actionFields.insert(event.currentIndex, actionField) // removing id will effectively re-create the actions in this order this.object.actions.forEach((a) => (a.id = null)) - this.updateTriggerActionFields() } } From e590b2482eadee2e8f0d3d765f0e5d124a3bf57b Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 7 Jan 2024 08:46:32 -0800 Subject: [PATCH 03/11] Update frontend strings --- src-ui/messages.xlf | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index 7e45a4550..e1a55e756 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -3547,63 +3547,63 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 From 4b00a72ff538e902e6188ead15ca4d0edc347263 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 7 Jan 2024 10:48:04 -0800 Subject: [PATCH 04/11] Fix: path fnmatch case note --- src-ui/messages.xlf | 4 ++-- .../workflow-edit-dialog/workflow-edit-dialog.component.html | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index e1a55e756..cf2d073ea 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -3487,8 +3487,8 @@ 185 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 185 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 5b68b3ab8..b4d4b02ca 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 @@ -182,7 +182,7 @@ @if (formGroup.get('type').value === WorkflowTriggerType.Consumption) { - + } @if (formGroup.get('type').value === WorkflowTriggerType.DocumentAdded || formGroup.get('type').value === WorkflowTriggerType.DocumentUpdated) { From 2b39697ffb1af3537ac1c929fb5a76517d453ec0 Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Sun, 7 Jan 2024 13:57:40 -0800 Subject: [PATCH 05/11] Fixes usages of UTC datetime instead of local datetime (#5304) --- src/documents/signals/handlers.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index d536a3967..a86868462 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -579,9 +579,9 @@ def run_workflow( if document.document_type is not None else "", document.owner.username if document.owner is not None else "", - document.added, + timezone.localtime(document.added), document.original_filename, - document.created, + timezone.localtime(document.created), ) if ( From d46abeff017460bba4256a6c817845409a616086 Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 7 Jan 2024 14:10:26 -0800 Subject: [PATCH 06/11] Fix: empty match field cannot be saved (#5301) --- .../workflow-edit-dialog/workflow-edit-dialog.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts index 4844dedc2..9bf49036f 100644 --- a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts +++ b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts @@ -258,7 +258,7 @@ export class WorkflowEditDialogComponent filter_has_correspondent: null, filter_has_document_type: null, matching_algorithm: MATCH_NONE, - match: null, + match: '', is_insensitive: true, } this.object.triggers.push(trigger) From ea47af7034ff23fa7c45fb1bbd885ba98212295b Mon Sep 17 00:00:00 2001 From: Trenton H <797416+stumpylog@users.noreply.github.com> Date: Sun, 7 Jan 2024 14:17:51 -0800 Subject: [PATCH 07/11] Fixes the user arguments json field decoding (#5307) --- src/paperless/serialisers.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/paperless/serialisers.py b/src/paperless/serialisers.py index bf649df05..db7ca21f7 100644 --- a/src/paperless/serialisers.py +++ b/src/paperless/serialisers.py @@ -1,3 +1,5 @@ +import logging + from django.contrib.auth.models import Group from django.contrib.auth.models import Permission from django.contrib.auth.models import User @@ -5,6 +7,8 @@ from rest_framework import serializers from paperless.models import ApplicationConfiguration +logger = logging.getLogger("paperless.settings") + class ObfuscatedUserPasswordField(serializers.Field): """ @@ -118,6 +122,8 @@ class ProfileSerializer(serializers.ModelSerializer): class ApplicationConfigurationSerializer(serializers.ModelSerializer): + user_args = serializers.JSONField(binary=True) + class Meta: model = ApplicationConfiguration fields = "__all__" From 9f6613fe052cc567db52e63890d38190ea56a4dc Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jan 2024 14:19:57 -0800 Subject: [PATCH 08/11] New Crowdin translations by GitHub Action (#5268) Co-authored-by: Crowdin Bot --- src-ui/src/locale/messages.de_DE.xlf | 224 ++++++++++++------------- src-ui/src/locale/messages.fr_FR.xlf | 70 ++++---- src-ui/src/locale/messages.it_IT.xlf | 2 +- src-ui/src/locale/messages.nl_NL.xlf | 110 ++++++------ src-ui/src/locale/messages.pl_PL.xlf | 2 +- src/locale/ca_ES/LC_MESSAGES/django.po | 26 +-- src/locale/de_DE/LC_MESSAGES/django.po | 88 +++++----- src/locale/fr_FR/LC_MESSAGES/django.po | 64 +++---- src/locale/it_IT/LC_MESSAGES/django.po | 2 +- src/locale/nl_NL/LC_MESSAGES/django.po | 2 +- src/locale/pl_PL/LC_MESSAGES/django.po | 2 +- 11 files changed, 296 insertions(+), 296 deletions(-) diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index c009fd186..bb55b90d1 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. - + Workflows give you more control over the document pipeline. src/app/app.component.ts 180 - Workflows geben Ihnen mehr Kontrolle über die Dokumentenpipeline. + Arbeitsabläufe geben Ihnen mehr Kontrolle über die Dokumentenverarbeitung. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -441,7 +441,7 @@ 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 @@ -455,9 +455,9 @@ src/app/components/app-frame/app-frame.component.html 280 - Konfiguration + Konfiguration - + @@ -477,23 +477,23 @@ 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 + Lesen Sie die Dokumentation zu dieser Einstellung - + Enable src/app/components/admin/config/config.component.html 30 - Enable + Aktivieren Discard @@ -571,37 +571,37 @@ Speichern - + Error retrieving config src/app/components/admin/config/config.component.ts 79 - Fehler beim Abrufen der Konfiguration + Fehler beim Abrufen der Konfiguration - + Invalid JSON src/app/components/admin/config/config.component.ts 105 - Invalid JSON + Ungültige JSON - + Configuration updated src/app/components/admin/config/config.component.ts 148 - Einstellungen aktualisiert + Einstellungen aktualisiert - + An error occurred updating configuration src/app/components/admin/config/config.component.ts 153 - Fehler beim Aktualisieren der Konfiguration + Fehler beim Aktualisieren der Konfiguration Logs @@ -1657,7 +1657,7 @@ src/app/components/app-frame/app-frame.component.ts 117 - Beim Speichern der Einstellungen ist ein Fehler aufgetreten. + Fehler beim Speichern der Einstellungen. Error while storing settings on server. @@ -2161,7 +2161,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 124 - Gelöschter Benutzer + Benutzer gelöscht Error deleting user. @@ -2209,7 +2209,7 @@ src/app/components/admin/users-groups/users-groups.component.ts 174 - Gelöschte Gruppe + Gruppe gelöscht Error deleting group. @@ -2452,7 +2452,7 @@ Benutzerdefinierte Felder - + Workflows src/app/components/app-frame/app-frame.component.html @@ -2466,7 +2466,7 @@ src/app/components/manage/workflows/workflows.component.html 1 - Arbeitsabläufe + Arbeitsabläufe Mail @@ -2566,7 +2566,7 @@ src/app/components/app-frame/app-frame.component.ts 283 - Beim Speichern der Einstellungen für die Updateüberprüfung ist ein Fehler aufgetreten. + Fehler beim Speichern der Einstellungen für die Aktualisierungsüberprüfung. Clear @@ -3656,7 +3656,7 @@ Sortierreihenfolge - + Enabled src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -3666,9 +3666,9 @@ src/app/components/manage/workflows/workflows.component.html 27 - Aktiviert + Aktiviert - + Triggers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -3678,47 +3678,47 @@ src/app/components/manage/workflows/workflows.component.html 17 - Auslöser + Auslöser - + Trigger Workflow On: src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 28 - Trigger Workflow On: + Workflow auslösen bei: - + Add Trigger src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 33 - Auslöser hinzufügen + Auslöser hinzufügen - + Apply Actions: src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 72 - Aktionen anwenden: + Aktionen anwenden: - + Add Action src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 77 - Aktion hinzufügen + Aktion hinzufügen - + Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 98 - Aktionstyp + Aktionstyp Assign title @@ -3728,13 +3728,13 @@ 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>. + Kann einige Platzhalter enthalten, siehe <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>Dokumentation</a>. Assign tags @@ -3784,21 +3784,21 @@ Bearbeitungsberechtigungen zuweisen - + Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 178 - Auslösetyp + Auslösertyp - + 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. + Auslöser für Dokumente, die mit allen unten angegebenen Filtern übereinstimmen. Filter filename @@ -3856,45 +3856,45 @@ 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 + Inhaltsabgleichsalgorithmus - + Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 191 - Content matching pattern + Inhaltsabgleichsmuster - + Has tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 200 - Enhält Tags + Hat Tags - + Has correspondent src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 201 - Hat Korrespondent + Hat Korrespondent - + Has document type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 202 - Hat Dokumentyp + Hat Dokumenttyp Consume Folder @@ -3920,53 +3920,53 @@ E-Mail-Abruf - + Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 53 - Consumption Started + Verarbeitung gestartet - + Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 57 - Dokument hinzugefügt + Dokument hinzugefügt - + Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 61 - Dokument aktualisiert + Dokument aktualisiert - + Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 68 - Zuordnung + Zuordnung - + Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 136 - Neuen Arbeitsablauf erstellen + Neuen Arbeitsablauf erstellen - + Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 140 - Arbeitsablauf bearbeiten + Arbeitsablauf bearbeiten All @@ -6867,77 +6867,77 @@ Möchten Sie das Tag „“ wirklich löschen? - + Add Workflow src/app/components/manage/workflows/workflows.component.html 6 - Arbeitsablauf hinzufügen + Arbeitsablauf hinzufügen - + Disabled src/app/components/manage/workflows/workflows.component.html 27 - Deaktiviert + Deaktiviert - + No workflows defined. src/app/components/manage/workflows/workflows.component.html 47 - Keine Arbeitsabläufe festgelegt. + Keine Arbeitsabläufe definiert. - + Saved workflow "". src/app/components/manage/workflows/workflows.component.ts 79 - Arbeitsablauf "" gespeichert. + Arbeitsablauf „“ gespeichert. - + Error saving workflow. src/app/components/manage/workflows/workflows.component.ts 87 - Fehler beim Speichern des Arbeitsablaufs. + Fehler beim Speichern des Arbeitsablaufs. - + Confirm delete workflow src/app/components/manage/workflows/workflows.component.ts 95 - Löschen des Arbeitsablaufs bestätigen + 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. + Dieser Vorgang wird diesen Arbeitsablauf dauerhaft löschen. - + Deleted workflow src/app/components/manage/workflows/workflows.component.ts 105 - Gelöschter Arbeitsablauf + Arbeitsablauf gelöscht - + Error deleting workflow. src/app/components/manage/workflows/workflows.component.ts 110 - Fehler beim Löschen des Arbeitsablaufs. + Fehler beim Löschen des Arbeitsablaufs. Not Found @@ -7115,117 +7115,117 @@ Keine: Deaktiviere automatische Zuweisung - + OCR Settings src/app/data/paperless-config.ts 49 - OCR-Einstellungen + OCR-Einstellungen - + Output Type src/app/data/paperless-config.ts 73 - Ausgangstyp + Ausgabetyp - + Language src/app/data/paperless-config.ts 81 - Sprache + Sprache - + Pages src/app/data/paperless-config.ts 88 - Seiten + Seiten - + Mode src/app/data/paperless-config.ts 95 - Modus + Modus - + Skip Archive File src/app/data/paperless-config.ts 103 - Archivdatei überspringen + Archivdatei überspringen - + Image DPI src/app/data/paperless-config.ts 111 - Bild DPI + Bild-DPI - + Clean src/app/data/paperless-config.ts 118 - Clean + Bereinigen - + Deskew src/app/data/paperless-config.ts 126 - Deskew + Schräglagenkorrektur - + Rotate Pages src/app/data/paperless-config.ts 133 - Seiten drehen + Seiten rotieren - + Rotate Pages Threshold src/app/data/paperless-config.ts 140 - Rotate Pages Threshold + Schwellwert: Seiten rotieren - + Max Image Pixels src/app/data/paperless-config.ts 147 - Max. Bildpixel + Maximale Bildpixel - + Color Conversion Strategy src/app/data/paperless-config.ts 154 - Farbkonvertierungsstrategie + Farbkonvertierungsstrategie - + OCR Arguments src/app/data/paperless-config.ts 162 - OCR-Argumente + OCR-Argumente 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 c0995077e..2090b42ca 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -477,7 +477,7 @@ src/app/components/common/permissions-select/permissions-select.component.html 22 - + Read the documentation about this setting @@ -2452,7 +2452,7 @@ Champs personnalisés - + Workflows src/app/components/app-frame/app-frame.component.html @@ -2466,7 +2466,7 @@ src/app/components/manage/workflows/workflows.component.html 1 - Workflows + Workflows Mail @@ -2494,7 +2494,7 @@ src/app/components/app-frame/app-frame.component.html 303,305 - tâche(s) sur fichiers + Tâches sur fichiers GitHub @@ -3656,7 +3656,7 @@ Ordre de tri - + Enabled src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -3666,9 +3666,9 @@ src/app/components/manage/workflows/workflows.component.html 27 - Activé + Activé - + Triggers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -3678,47 +3678,47 @@ src/app/components/manage/workflows/workflows.component.html 17 - Déclencheurs + 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 : + 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 + Ajouter un déclencheur - + Apply Actions: src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 72 - Appliquer l’action : + Appliquer l’action : - + Add Action src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 77 - Ajouter une action + Ajouter une action - + Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 98 - Type d'action + Type d'action Assign title @@ -3856,21 +3856,21 @@ 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 + 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 + Modèle de correspondance au contenu Has tags @@ -3880,21 +3880,21 @@ Porte les étiquettes - + Has correspondent src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 201 - A un correspondant + A le correspondant - + Has document type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 202 - A un type de document + A le type de document Consume Folder @@ -3926,7 +3926,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 53 - Consumption Started + Début de consommation Document Added @@ -3952,13 +3952,13 @@ Assignation - + Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 136 - Créer un nouveau workflow + Créer un nouveau workflow Edit workflow @@ -6875,21 +6875,21 @@ Ajouter un workflow - + Disabled src/app/components/manage/workflows/workflows.component.html 27 - Désactivé + Désactivé - + No workflows defined. src/app/components/manage/workflows/workflows.component.html 47 - Aucun workflow défini. + Aucun workflow défini. Saved workflow "". @@ -7177,7 +7177,7 @@ src/app/data/paperless-config.ts 118 - Clean + Nettoyage Deskew @@ -7185,7 +7185,7 @@ src/app/data/paperless-config.ts 126 - Deskew + Réalignement Rotate Pages diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 1c4ebd975..96e2011cf 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -3702,7 +3702,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 72 - Apply Actions: + Applica Azioni: Add Action diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index ac2cceba5..1f20f7f48 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -399,7 +399,7 @@ src/app/app.component.ts 180 - Workflows give you more control over the document pipeline. + Workflows geven je meer controle over de verwerking van documenten. File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. @@ -455,7 +455,7 @@ src/app/components/app-frame/app-frame.component.html 280 - Configuration + Configuratie @@ -477,7 +477,7 @@ src/app/components/common/permissions-select/permissions-select.component.html 22 - + Read the documentation about this setting @@ -485,7 +485,7 @@ src/app/components/admin/config/config.component.html 19 - Read the documentation about this setting + Lees de documentatie over deze instelling Enable @@ -493,7 +493,7 @@ src/app/components/admin/config/config.component.html 30 - Enable + Inschakelen Discard @@ -577,7 +577,7 @@ src/app/components/admin/config/config.component.ts 79 - Error retrieving config + Fout bij ophalen configuratie Invalid JSON @@ -585,7 +585,7 @@ src/app/components/admin/config/config.component.ts 105 - Invalid JSON + Ongeldige JSON Configuration updated @@ -593,7 +593,7 @@ src/app/components/admin/config/config.component.ts 148 - Configuration updated + Configuratie bijgewerkt An error occurred updating configuration @@ -601,7 +601,7 @@ src/app/components/admin/config/config.component.ts 153 - An error occurred updating configuration + Fout opgetreden tijdens bijwerken configuratie Logs @@ -2466,7 +2466,7 @@ src/app/components/manage/workflows/workflows.component.html 1 - Workflows + Workflows Mail @@ -3266,7 +3266,7 @@ src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html 32 - Deze toewijzingen zullen die van consumpiesjablonen vervangen. + Deze toewijzingen zullen die van verwerkingssjablonen vervangen. Assign title from @@ -3666,7 +3666,7 @@ src/app/components/manage/workflows/workflows.component.html 27 - Enabled + Ingeschakeld Triggers @@ -3678,7 +3678,7 @@ src/app/components/manage/workflows/workflows.component.html 17 - Triggers + Triggers Trigger Workflow On: @@ -3686,7 +3686,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 28 - Trigger Workflow On: + Trigger workflow wanneer: Add Trigger @@ -3694,7 +3694,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 33 - Add Trigger + Trigger toevoegen Apply Actions: @@ -3702,7 +3702,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 72 - Apply Actions: + Acties toepassen: Add Action @@ -3710,7 +3710,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 77 - Add Action + Actie toevoegen Action type @@ -3718,7 +3718,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 98 - Action type + Actie type Assign title @@ -3734,7 +3734,7 @@ 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>. + Kan gebruik maken van sommige placeholders, zie <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentatie</a>. Assign tags @@ -3790,7 +3790,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 178 - Trigger type + Trigger type Trigger for documents that match all filters specified below. @@ -3798,7 +3798,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 179 - Trigger for documents that match all filters specified below. + Trigger voor documenten die overeenkomen met alle filters hieronder. Filter filename @@ -3862,7 +3862,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 189 - Content matching algorithm + Inhoud matchingsalgoritme Content matching pattern @@ -3870,7 +3870,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 191 - Content matching pattern + Inhoud matchen op patroon Has tags @@ -3878,7 +3878,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 200 - Has tags + Heeft labels Has correspondent @@ -3886,7 +3886,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 201 - Has correspondent + Heeft correspondent Has document type @@ -3894,7 +3894,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 202 - Has document type + Heeft documenttype Consume Folder @@ -3926,7 +3926,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 53 - Consumption Started + Verwerking gestart Document Added @@ -3934,7 +3934,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 57 - Document Added + Document toegevoegd Document Updated @@ -3942,7 +3942,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 61 - Document Updated + Document bijgewerkt Assignment @@ -3950,7 +3950,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 68 - Assignment + Toewijzing Create new workflow @@ -3958,7 +3958,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 136 - Create new workflow + Nieuwe workflow maken Edit workflow @@ -3966,7 +3966,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 140 - Edit workflow + Workflow bewerken All @@ -6873,7 +6873,7 @@ src/app/components/manage/workflows/workflows.component.html 6 - Add Workflow + Workflow toevoegen Disabled @@ -6881,7 +6881,7 @@ src/app/components/manage/workflows/workflows.component.html 27 - Disabled + Uitgeschakeld No workflows defined. @@ -6889,7 +6889,7 @@ src/app/components/manage/workflows/workflows.component.html 47 - No workflows defined. + Geen workflows gedefinieerd. Saved workflow "". @@ -6897,7 +6897,7 @@ src/app/components/manage/workflows/workflows.component.ts 79 - Saved workflow "". + Workflow "" opgeslagen. Error saving workflow. @@ -6905,7 +6905,7 @@ src/app/components/manage/workflows/workflows.component.ts 87 - Error saving workflow. + Fout bij opslaan workflow. Confirm delete workflow @@ -6913,7 +6913,7 @@ src/app/components/manage/workflows/workflows.component.ts 95 - Confirm delete workflow + Bevestig workflow verwijderen This operation will permanently delete this workflow. @@ -6921,7 +6921,7 @@ src/app/components/manage/workflows/workflows.component.ts 96 - This operation will permanently delete this workflow. + Deze bewerking zal deze workflow permanent verwijderen. Deleted workflow @@ -6929,7 +6929,7 @@ src/app/components/manage/workflows/workflows.component.ts 105 - Deleted workflow + Workflow verwijderd Error deleting workflow. @@ -6937,7 +6937,7 @@ src/app/components/manage/workflows/workflows.component.ts 110 - Error deleting workflow. + Fout bij verwijderen workflow. Not Found @@ -7121,7 +7121,7 @@ src/app/data/paperless-config.ts 49 - OCR Settings + OCR-instellingen Output Type @@ -7129,7 +7129,7 @@ src/app/data/paperless-config.ts 73 - Output Type + Uitvoer bestandstype Language @@ -7137,7 +7137,7 @@ src/app/data/paperless-config.ts 81 - Language + Taal Pages @@ -7145,7 +7145,7 @@ src/app/data/paperless-config.ts 88 - Pages + Pagina's Mode @@ -7153,7 +7153,7 @@ src/app/data/paperless-config.ts 95 - Mode + Modus Skip Archive File @@ -7161,7 +7161,7 @@ src/app/data/paperless-config.ts 103 - Skip Archive File + Archiefbestand maken overslaan Image DPI @@ -7169,7 +7169,7 @@ src/app/data/paperless-config.ts 111 - Image DPI + Afbeelding DPI Clean @@ -7177,7 +7177,7 @@ src/app/data/paperless-config.ts 118 - Clean + Opschoon methode Deskew @@ -7185,7 +7185,7 @@ src/app/data/paperless-config.ts 126 - Deskew + Rechtzetten Rotate Pages @@ -7193,7 +7193,7 @@ src/app/data/paperless-config.ts 133 - Rotate Pages + Pagina's draaien Rotate Pages Threshold @@ -7201,7 +7201,7 @@ src/app/data/paperless-config.ts 140 - Rotate Pages Threshold + Drempelwaarde pagina draaien Max Image Pixels @@ -7209,7 +7209,7 @@ src/app/data/paperless-config.ts 147 - Max Image Pixels + Limiet afbeeldingspixels Color Conversion Strategy @@ -7217,7 +7217,7 @@ src/app/data/paperless-config.ts 154 - Color Conversion Strategy + Methode kleuromzetting OCR Arguments @@ -7225,7 +7225,7 @@ src/app/data/paperless-config.ts 162 - OCR Arguments + OCR argumenten 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 7aa09f16d..2aac92083 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -6985,7 +6985,7 @@ src/app/data/custom-field.ts 29 - Liczba + Liczba rzeczywista Monetary diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index 0f22e66f6..73a880da0 100644 --- a/src/locale/ca_ES/LC_MESSAGES/django.po +++ b/src/locale/ca_ES/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-01-05 21:26-0800\n" -"PO-Revision-Date: 2024-01-06 05:27\n" +"PO-Revision-Date: 2024-01-06 12:09\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" @@ -673,11 +673,11 @@ msgstr "té aquest corresponsal" #: documents/models.py:988 msgid "workflow trigger" -msgstr "" +msgstr "disparador de flux" #: documents/models.py:989 msgid "workflow triggers" -msgstr "" +msgstr "disparadors de fluxos" #: documents/models.py:997 msgid "Assignment" @@ -685,7 +685,7 @@ msgstr "Assignació" #: documents/models.py:1000 msgid "Workflow Action Type" -msgstr "" +msgstr "Tipus d'acció de disparador" #: documents/models.py:1006 msgid "assign title" @@ -737,11 +737,11 @@ msgstr "assigna aquests camps personalitzats" #: documents/models.py:1091 msgid "workflow action" -msgstr "" +msgstr "acció disparador" #: documents/models.py:1092 msgid "workflow actions" -msgstr "" +msgstr "accions disparadors" #: documents/models.py:1101 paperless_mail/models.py:95 msgid "order" @@ -963,7 +963,7 @@ msgstr "forçar" #: paperless/models.py:41 msgid "skip_noarchive" -msgstr "" +msgstr "skip_noarchive" #: paperless/models.py:49 msgid "never" @@ -971,7 +971,7 @@ msgstr "mai" #: paperless/models.py:50 msgid "with_text" -msgstr "" +msgstr "with_text" #: paperless/models.py:51 msgid "always" @@ -983,7 +983,7 @@ msgstr "neteja" #: paperless/models.py:60 msgid "clean-final" -msgstr "" +msgstr "clean-final" #: paperless/models.py:61 msgid "none" @@ -991,7 +991,7 @@ msgstr "cap" #: paperless/models.py:69 msgid "LeaveColorUnchanged" -msgstr "" +msgstr "DeixarColorSenseCanviar" #: paperless/models.py:70 msgid "RGB" @@ -999,7 +999,7 @@ msgstr "RGB" #: paperless/models.py:71 msgid "UseDeviceIndependentColor" -msgstr "" +msgstr "EmprarColordispositiuIndependent" #: paperless/models.py:72 msgid "Gray" @@ -1027,7 +1027,7 @@ msgstr "Estableix el mode OCR" #: paperless/models.py:115 msgid "Controls the generation of an archive file" -msgstr "" +msgstr "Controls de generació d'arxiu arxivat" #: paperless/models.py:123 msgid "Sets image DPI fallback value" @@ -1039,7 +1039,7 @@ msgstr "" #: paperless/models.py:137 msgid "Enables deskew" -msgstr "" +msgstr "Habilita deskew" #: paperless/models.py:140 msgid "Enables page rotation" diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index fa67ecfaa..d1c371c08 100644 --- a/src/locale/de_DE/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-01-05 21:26-0800\n" -"PO-Revision-Date: 2024-01-06 05:27\n" +"PO-Revision-Date: 2024-01-07 00:27\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -613,7 +613,7 @@ msgstr "Benutzerdefinierte Feld-Instanzen" #: documents/models.py:902 msgid "Consumption Started" -msgstr "" +msgstr "Verarbeitung gestartet" #: documents/models.py:903 msgid "Document Added" @@ -637,7 +637,7 @@ msgstr "E-Mail-Abruf" #: documents/models.py:912 msgid "Workflow Trigger Type" -msgstr "" +msgstr "Workflow-Auslösertyp" #: documents/models.py:924 msgid "filter path" @@ -661,23 +661,23 @@ msgstr "Dokumente aus dieser E-Mail-Regel filtern" #: documents/models.py:968 msgid "has these tag(s)" -msgstr "" +msgstr "hat diese(n) Tag(s)" #: documents/models.py:976 msgid "has this document type" -msgstr "" +msgstr "hat diesen Dokumenttyp" #: documents/models.py:984 msgid "has this correspondent" -msgstr "" +msgstr "hat diesen Korrespondenten" #: documents/models.py:988 msgid "workflow trigger" -msgstr "" +msgstr "Arbeitsablauf-Auslöser" #: documents/models.py:989 msgid "workflow triggers" -msgstr "" +msgstr "Arbeitsablauf-Auslöser" #: documents/models.py:997 msgid "Assignment" @@ -685,7 +685,7 @@ msgstr "Zuordnung" #: documents/models.py:1000 msgid "Workflow Action Type" -msgstr "" +msgstr "Arbeitsablauf-Aktionstyp" #: documents/models.py:1006 msgid "assign title" @@ -737,11 +737,11 @@ msgstr "Diese benutzerdefinierten Felder zuweisen" #: documents/models.py:1091 msgid "workflow action" -msgstr "" +msgstr "Workflow-Aktion" #: documents/models.py:1092 msgid "workflow actions" -msgstr "" +msgstr "Workflow-Aktionen" #: documents/models.py:1101 paperless_mail/models.py:95 msgid "order" @@ -749,11 +749,11 @@ msgstr "Reihenfolge" #: documents/models.py:1107 msgid "triggers" -msgstr "" +msgstr "Auslöser" #: documents/models.py:1114 msgid "actions" -msgstr "" +msgstr "Aktionen" #: documents/models.py:1117 msgid "enabled" @@ -913,17 +913,17 @@ msgstr "Anweisungen senden!" #: documents/validators.py:17 #, python-brace-format msgid "Unable to parse URI {value}, missing scheme" -msgstr "" +msgstr "Kann URL {value} nicht parsen, fehlendes Schema" #: documents/validators.py:22 #, python-brace-format msgid "Unable to parse URI {value}, missing net location or path" -msgstr "" +msgstr "Kann URL {value} nicht parsen, fehlende Netzadresse oder Pfad" #: documents/validators.py:27 #, python-brace-format msgid "Unable to parse URI {value}" -msgstr "" +msgstr "Kann URL {value} nicht parsen" #: paperless/apps.py:10 msgid "Paperless" @@ -931,31 +931,31 @@ msgstr "Paperless" #: paperless/models.py:25 msgid "pdf" -msgstr "" +msgstr "pdf" #: paperless/models.py:26 msgid "pdfa" -msgstr "" +msgstr "pdfa" #: paperless/models.py:27 msgid "pdfa-1" -msgstr "" +msgstr "pdfa-1" #: paperless/models.py:28 msgid "pdfa-2" -msgstr "" +msgstr "pdfa-2" #: paperless/models.py:29 msgid "pdfa-3" -msgstr "" +msgstr "pdfa-3" #: paperless/models.py:38 msgid "skip" -msgstr "" +msgstr "überspringen" #: paperless/models.py:39 msgid "redo" -msgstr "" +msgstr "wiederholen" #: paperless/models.py:40 msgid "force" @@ -963,7 +963,7 @@ msgstr "erzwingen" #: paperless/models.py:41 msgid "skip_noarchive" -msgstr "" +msgstr "skip_noarchive" #: paperless/models.py:49 msgid "never" @@ -971,7 +971,7 @@ msgstr "nie" #: paperless/models.py:50 msgid "with_text" -msgstr "mit_Text" +msgstr "with_text" #: paperless/models.py:51 msgid "always" @@ -979,27 +979,27 @@ msgstr "immer" #: paperless/models.py:59 msgid "clean" -msgstr "" +msgstr "bereinigen" #: paperless/models.py:60 msgid "clean-final" -msgstr "" +msgstr "clean-final" #: paperless/models.py:61 msgid "none" -msgstr "" +msgstr "keine" #: paperless/models.py:69 msgid "LeaveColorUnchanged" -msgstr "" +msgstr "LeaveColorUnchanged" #: paperless/models.py:70 msgid "RGB" -msgstr "" +msgstr "RGB" #: paperless/models.py:71 msgid "UseDeviceIndependentColor" -msgstr "" +msgstr "UseDeviceIndependentColor" #: paperless/models.py:72 msgid "Gray" @@ -1011,15 +1011,15 @@ msgstr "CMYK" #: paperless/models.py:82 msgid "Sets the output PDF type" -msgstr "Legt den Ausgabe-PDF-Typ fest" +msgstr "Legt den PDF-Typ der Ausgabedatei fest" #: paperless/models.py:94 msgid "Do OCR from page 1 to this value" -msgstr "" +msgstr "OCR von Seite 1 bis zu diesem Wert durchführen" #: paperless/models.py:100 msgid "Do OCR using these languages" -msgstr "" +msgstr "OCR für diese Sprachen durchführen" #: paperless/models.py:107 msgid "Sets the OCR mode" @@ -1027,43 +1027,43 @@ msgstr "Legt den OCR-Modus fest" #: paperless/models.py:115 msgid "Controls the generation of an archive file" -msgstr "" +msgstr "Steuert die Erzeugung einer Archivdatei" #: paperless/models.py:123 msgid "Sets image DPI fallback value" -msgstr "" +msgstr "Setzt den Bild-DPI Fallback-Wert" #: paperless/models.py:130 msgid "Controls the unpaper cleaning" -msgstr "" +msgstr "Steuert die unpaper-Bereinigung" #: paperless/models.py:137 msgid "Enables deskew" -msgstr "" +msgstr "Aktiviert die Schräglagenkorrektur" #: paperless/models.py:140 msgid "Enables page rotation" -msgstr "" +msgstr "Aktiviert Seitenrotation" #: paperless/models.py:145 msgid "Sets the threshold for rotation of pages" -msgstr "" +msgstr "Legt die Schwelle für die Seitenrotation fest" #: paperless/models.py:151 msgid "Sets the maximum image size for decompression" -msgstr "" +msgstr "Legt die maximale Bildgröße für die Dekomprimierung fest" #: paperless/models.py:157 msgid "Sets the Ghostscript color conversion strategy" -msgstr "" +msgstr "Legt die Ghostscript-Farbkonvertierungsstrategie fest" #: paperless/models.py:165 msgid "Adds additional user arguments for OCRMyPDF" -msgstr "" +msgstr "Fügt zusätzliche Benutzerparameter für OCRMyPDF hinzu" #: paperless/models.py:170 msgid "paperless application settings" -msgstr "" +msgstr "Paperless-Anwendungseinstellungen" #: paperless/settings.py:601 msgid "English (US)" diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index 1b483607c..dc2f7dd6f 100644 --- a/src/locale/fr_FR/LC_MESSAGES/django.po +++ b/src/locale/fr_FR/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-01-05 21:26-0800\n" -"PO-Revision-Date: 2024-01-06 05:27\n" +"PO-Revision-Date: 2024-01-07 00:27\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -613,15 +613,15 @@ msgstr "instances de champs personnalisés" #: documents/models.py:902 msgid "Consumption Started" -msgstr "" +msgstr "La consommation a débuté" #: documents/models.py:903 msgid "Document Added" -msgstr "" +msgstr "Document ajouté" #: documents/models.py:904 msgid "Document Updated" -msgstr "" +msgstr "Document mis à jour" #: documents/models.py:907 msgid "Consume Folder" @@ -637,7 +637,7 @@ msgstr "Récupération du courriel" #: documents/models.py:912 msgid "Workflow Trigger Type" -msgstr "" +msgstr "Type de déclencheur de workflow" #: documents/models.py:924 msgid "filter path" @@ -661,31 +661,31 @@ msgstr "filtrer les documents à partir de cette règle de messagerie" #: documents/models.py:968 msgid "has these tag(s)" -msgstr "" +msgstr "a cette/ces étiquette(s)" #: documents/models.py:976 msgid "has this document type" -msgstr "" +msgstr "a ce type de document" #: documents/models.py:984 msgid "has this correspondent" -msgstr "" +msgstr "a ce correspondant" #: documents/models.py:988 msgid "workflow trigger" -msgstr "" +msgstr "déclencheur workflow" #: documents/models.py:989 msgid "workflow triggers" -msgstr "" +msgstr "déclencheurs workflow" #: documents/models.py:997 msgid "Assignment" -msgstr "" +msgstr "Affectation" #: documents/models.py:1000 msgid "Workflow Action Type" -msgstr "" +msgstr "Type d'action de workflow" #: documents/models.py:1006 msgid "assign title" @@ -737,11 +737,11 @@ msgstr "assigner ces champs personnalisés" #: documents/models.py:1091 msgid "workflow action" -msgstr "" +msgstr "action de workflow" #: documents/models.py:1092 msgid "workflow actions" -msgstr "" +msgstr "actions de workflow" #: documents/models.py:1101 paperless_mail/models.py:95 msgid "order" @@ -963,7 +963,7 @@ msgstr "forcer" #: paperless/models.py:41 msgid "skip_noarchive" -msgstr "" +msgstr "skip_noarchive" #: paperless/models.py:49 msgid "never" @@ -971,7 +971,7 @@ msgstr "jamais" #: paperless/models.py:50 msgid "with_text" -msgstr "" +msgstr "with_text" #: paperless/models.py:51 msgid "always" @@ -983,7 +983,7 @@ msgstr "clean" #: paperless/models.py:60 msgid "clean-final" -msgstr "" +msgstr "clean-final" #: paperless/models.py:61 msgid "none" @@ -991,7 +991,7 @@ msgstr "aucun" #: paperless/models.py:69 msgid "LeaveColorUnchanged" -msgstr "" +msgstr "Laisser les couleurs inchangées" #: paperless/models.py:70 msgid "RGB" @@ -999,15 +999,15 @@ msgstr "RGB" #: paperless/models.py:71 msgid "UseDeviceIndependentColor" -msgstr "" +msgstr "Utiliser la couleur indépendante de l'appareil" #: paperless/models.py:72 msgid "Gray" -msgstr "" +msgstr "Gris" #: paperless/models.py:73 msgid "CMYK" -msgstr "" +msgstr "CMJN" #: paperless/models.py:82 msgid "Sets the output PDF type" @@ -1015,31 +1015,31 @@ msgstr "Définit le type de PDF de sortie" #: paperless/models.py:94 msgid "Do OCR from page 1 to this value" -msgstr "" +msgstr "Effectuer la ROC de la page 1 à cette valeur" #: paperless/models.py:100 msgid "Do OCR using these languages" -msgstr "" +msgstr "Utiliser la ROC en utilisant ces langues" #: paperless/models.py:107 msgid "Sets the OCR mode" -msgstr "" +msgstr "Définit le mode de la ROC" #: paperless/models.py:115 msgid "Controls the generation of an archive file" -msgstr "" +msgstr "Contrôle la génération d'un fichier d'archive" #: paperless/models.py:123 msgid "Sets image DPI fallback value" -msgstr "" +msgstr "Définit la valeur de repli du DPI de l'image" #: paperless/models.py:130 msgid "Controls the unpaper cleaning" -msgstr "" +msgstr "Contrôle le nettoyage du papier" #: paperless/models.py:137 msgid "Enables deskew" -msgstr "" +msgstr "Active le réalignement" #: paperless/models.py:140 msgid "Enables page rotation" @@ -1051,19 +1051,19 @@ msgstr "Définit le seuil de rotation des pages" #: paperless/models.py:151 msgid "Sets the maximum image size for decompression" -msgstr "" +msgstr "Définit la taille maximale de l'image pour la décompression" #: paperless/models.py:157 msgid "Sets the Ghostscript color conversion strategy" -msgstr "" +msgstr "Définit la stratégie de conversion des couleurs de Ghostscript" #: paperless/models.py:165 msgid "Adds additional user arguments for OCRMyPDF" -msgstr "" +msgstr "Ajoute des arguments utilisateur supplémentaires pour OCRMyPDF" #: paperless/models.py:170 msgid "paperless application settings" -msgstr "" +msgstr "paramètres de l'application paperless" #: paperless/settings.py:601 msgid "English (US)" diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po index 36fb197a8..a31015647 100644 --- a/src/locale/it_IT/LC_MESSAGES/django.po +++ b/src/locale/it_IT/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-01-05 21:26-0800\n" -"PO-Revision-Date: 2024-01-06 05:27\n" +"PO-Revision-Date: 2024-01-07 00:27\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po index 7fdfe9c4e..beecbe4f6 100644 --- a/src/locale/nl_NL/LC_MESSAGES/django.po +++ b/src/locale/nl_NL/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-01-05 21:26-0800\n" -"PO-Revision-Date: 2024-01-06 05:27\n" +"PO-Revision-Date: 2024-01-07 00:27\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po index b256a0af5..f2600167f 100644 --- a/src/locale/pl_PL/LC_MESSAGES/django.po +++ b/src/locale/pl_PL/LC_MESSAGES/django.po @@ -3,7 +3,7 @@ msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2024-01-05 21:26-0800\n" -"PO-Revision-Date: 2024-01-06 05:27\n" +"PO-Revision-Date: 2024-01-06 12:09\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" From c64667d3967f272f690ef2994e037e3e7aac562e Mon Sep 17 00:00:00 2001 From: shamoon <4887959+shamoon@users.noreply.github.com> Date: Sun, 7 Jan 2024 14:27:57 -0800 Subject: [PATCH 09/11] Fix: workflow assignment of customfield fails if field exists in v2.3.1 (#5302) --- src/documents/signals/handlers.py | 16 +++++++--- src/documents/tests/test_workflows.py | 42 +++++++++++++++++++++++++++ 2 files changed, 54 insertions(+), 4 deletions(-) diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index a86868462..b782cfa7f 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -610,10 +610,18 @@ def run_workflow( 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 + if ( + CustomFieldInstance.objects.filter( + field=field, + document=document, + ).count() + == 0 + ): + # can be triggered on existing docs, so only add the field if it doesnt already exist + CustomFieldInstance.objects.create( + field=field, + document=document, + ) document.save() diff --git a/src/documents/tests/test_workflows.py b/src/documents/tests/test_workflows.py index 92207742f..b4ad4aa57 100644 --- a/src/documents/tests/test_workflows.py +++ b/src/documents/tests/test_workflows.py @@ -13,6 +13,7 @@ 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 CustomFieldInstance from documents.models import Document from documents.models import DocumentType from documents.models import MatchingModel @@ -997,6 +998,47 @@ class TestWorkflows(DirectoriesMixin, FileSystemAssertsMixin, APITestCase): self.assertEqual(doc.custom_fields.all().count(), 1) + def test_document_updated_workflow_existing_custom_field(self): + """ + GIVEN: + - Existing workflow with UPDATED trigger and action that adds a custom field + WHEN: + - Document is updated that already contains the field + THEN: + - Document update succeeds without trying to re-create the field + """ + 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", + ) + CustomFieldInstance.objects.create(document=doc, field=self.cf1) + + 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, From 30c31a3d4c357bc9e495b6269ffe23540a3f10bb Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 7 Jan 2024 14:37:33 -0800 Subject: [PATCH 10/11] New Crowdin translations by GitHub Action (#5309) Co-authored-by: Crowdin Bot --- src-ui/src/locale/messages.af_ZA.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.ar_AR.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.be_BY.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.bg_BG.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.ca_ES.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.cs_CZ.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.da_DK.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.de_DE.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.el_GR.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.es_ES.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.fi_FI.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.fr_FR.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.he_IL.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.hr_HR.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.hu_HU.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.id_ID.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.it_IT.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.ko_KR.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.lb_LU.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.lv_LV.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.nl_NL.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.no_NO.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.pl_PL.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.pt_BR.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.pt_PT.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.ro_RO.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.ru_RU.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.sk_SK.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.sl_SI.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.sr_CS.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.sv_SE.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.th_TH.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.tr_TR.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.uk_UA.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.vi_VN.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.zh_CN.xlf | 24 ++++++++++++------------ src-ui/src/locale/messages.zh_TW.xlf | 24 ++++++++++++------------ 37 files changed, 444 insertions(+), 444 deletions(-) diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index d737b9b7f..3e9673453 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index 55a9ad487..22285a70c 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -3832,13 +3832,13 @@ مسار التصفية - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 185 - تطبيق على المستندات التي تتطابق مع هذا المسار. البطاقات البرية المحددة كما * مسموح بها. حالة غير حساسة.</a> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 ‏مِلَفّ الاستهلاك @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 تحميل API @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 جلب البريد @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index aa68bc343..efa757727 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index 94eb43051..599845451 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -3832,13 +3832,13 @@ Филтриране на път - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 185 - Прилага се към документи, които отговарят на този път. Позволени са заместващи символи, посочени като *. Нечувствителен към големината на буквите.</a> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Папка за консумация @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 Качване от API @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Извличане на поща @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index aee726865..82fe8957c 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -3832,13 +3832,13 @@ Filtra ruta - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Directori consumició @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 Pujada API @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Recollida Correu @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Començada Consumpció @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Afegit @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Actualitzat @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignació @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Afegir flux de treball @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Editar flux diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index 9d36b1754..4be243b6e 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index e6cb1f837..ddfb654b8 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index bb55b90d1..74677f234 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -3832,13 +3832,13 @@ Pfad filtern - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Importordner @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API-Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 E-Mail-Abruf @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Verarbeitung gestartet @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Dokument hinzugefügt @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Dokument aktualisiert @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Zuordnung @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Neuen Arbeitsablauf erstellen @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Arbeitsablauf bearbeiten diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index 01a705753..a07d47d23 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index 2a0a890b4..1f7a98e41 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -3832,13 +3832,13 @@ Filtrar ruta - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consumir carpeta @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 Carga de API @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Buscar correo @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 15d652669..817ada4ff 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API-lähetys @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 2090b42ca..8e9b52aea 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -3832,13 +3832,13 @@ Filtrer le chemin - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Dossier de traitement @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 Chargement de l'API @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Récupération du courrier @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Début de consommation @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document ajouté @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document mis à jour @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignation @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Créer un nouveau workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Modifier le workflow diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 183ad5853..157164d55 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -3832,13 +3832,13 @@ מסנן לפי נתיב שמירה - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index de3d42e57..cef99f3a0 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index 59777635b..870099f10 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -3832,13 +3832,13 @@ Szűrési útvonal - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Feldolgozási mappa @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API feltöltés @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail lehívás @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index bdcb55bef..1fe1f0b11 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -3832,13 +3832,13 @@ Filter lokasi - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 Unggah Menggunakan API @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index 96e2011cf..c2745a19b 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -3832,13 +3832,13 @@ Filtro percorso - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Cartella di elaborazione @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 Upload API @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Recupero Posta @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Documento Aggiunto @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Documento Aggiornato @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index e29caebdc..45207d8c4 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API 업로드 @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 2cc319603..43ab175a4 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index 3638cd2ae..faba9d2cf 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 1f20f7f48..6fbe1699c 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -3832,13 +3832,13 @@ Filter op opslaglocatie - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Inname locatie @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 E-mail ophalen @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Verwerking gestart @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document toegevoegd @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document bijgewerkt @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Toewijzing @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Nieuwe workflow maken @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Workflow bewerken diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index 1b75a6f48..3e469d55b 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Epost-henting @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 2aac92083..752a6d4e2 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -3832,13 +3832,13 @@ Filtruj ścieżkę - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Folder pobierania @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 Przesyłanie przez API @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Pobieranie poczty @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Rozpoczęto pobieranie @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Dodano dokument @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Dokument zaktualizowano @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Przypisanie @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Utwórz nowy proces @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edytuj proces diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index e325ed52a..8ae7a54d0 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -3833,13 +3833,13 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Filtro de caminho - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3901,7 +3901,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Pasta de Consumo @@ -3909,7 +3909,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 Envio por API @@ -3917,7 +3917,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Busca em e-mail @@ -3925,7 +3925,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3933,7 +3933,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3941,7 +3941,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3949,7 +3949,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3957,7 +3957,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3965,7 +3965,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index e21d24f8f..8ec0e2900 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index aa7801b41..503a219b9 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -3832,13 +3832,13 @@ Filtrare cale - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 457516a61..bb776127e 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 Загрузка API @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Получить почту @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index 07c66df61..d5644f8e2 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index a340547ae..3ab514480 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -3832,13 +3832,13 @@ Filtriraj pot - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Zajemalna mapa @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API prenos @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Pridobi e-pošto @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index 0552b0c06..0d2c647ae 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -3832,13 +3832,13 @@ Filtriraj putanju - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Folder za obradu @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API otpremanje @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Preuzimanje e-pošte @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index fdb70be5b..861c55277 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index f5ea6ff45..5c41a57c2 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index 39963dc7f..417ff4423 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -3832,13 +3832,13 @@ Filtre Yolu - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API yükle @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Posta Yükle @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index 572252cea..52384d5fc 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index 52c95095a..0ea643c47 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -3832,13 +3832,13 @@ Lọc đường dẫn - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 0bdeb36ee..7e3070fd3 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -3832,13 +3832,13 @@ 筛选路径 - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 185 - 应用于匹配此路径的文档。允许指定为*的通配符。不区分大小写。</a> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 消费文件夹 @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 Api上传 @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 邮件获取 @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 072fe08f1..f659f11cd 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -3832,13 +3832,13 @@ Filter path - - Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a> + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</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> + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> Filter mail rule @@ -3900,7 +3900,7 @@ Consume Folder src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 38 + 39 Consume Folder @@ -3908,7 +3908,7 @@ API Upload src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 42 + 43 API Upload @@ -3916,7 +3916,7 @@ Mail Fetch src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 46 + 47 Mail Fetch @@ -3924,7 +3924,7 @@ Consumption Started src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 53 + 54 Consumption Started @@ -3932,7 +3932,7 @@ Document Added src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 57 + 58 Document Added @@ -3940,7 +3940,7 @@ Document Updated src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 61 + 62 Document Updated @@ -3948,7 +3948,7 @@ Assignment src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 68 + 69 Assignment @@ -3956,7 +3956,7 @@ Create new workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 136 + 137 Create new workflow @@ -3964,7 +3964,7 @@ Edit workflow src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts - 140 + 141 Edit workflow From 4f85dcecfc8d91112ae52f83c1317ed0b14a9209 Mon Sep 17 00:00:00 2001 From: Colin Hebert Date: Mon, 8 Jan 2024 09:49:29 +1100 Subject: [PATCH 11/11] Deployment: Use the default Docker healthcheck from the Dockerfile (Part 2) (#5224) * Set default healthcheck * Rely on default healthcheck --- docker/compose/docker-compose.mariadb-tika.yml | 5 ----- docker/compose/docker-compose.mariadb.yml | 6 ------ docker/compose/docker-compose.portainer.yml | 5 ----- docker/compose/docker-compose.postgres-tika.yml | 5 ----- docker/compose/docker-compose.postgres.yml | 6 ------ docker/compose/docker-compose.sqlite-tika.yml | 5 ----- docker/compose/docker-compose.sqlite.yml | 6 ------ 7 files changed, 38 deletions(-) diff --git a/docker/compose/docker-compose.mariadb-tika.yml b/docker/compose/docker-compose.mariadb-tika.yml index 10d0e61a2..7dbda6150 100644 --- a/docker/compose/docker-compose.mariadb-tika.yml +++ b/docker/compose/docker-compose.mariadb-tika.yml @@ -60,11 +60,6 @@ services: - tika ports: - "8000:8000" - healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:8000"] - interval: 30s - timeout: 10s - retries: 5 volumes: - data:/usr/src/paperless/data - media:/usr/src/paperless/media diff --git a/docker/compose/docker-compose.mariadb.yml b/docker/compose/docker-compose.mariadb.yml index e08cafa41..1291b3623 100644 --- a/docker/compose/docker-compose.mariadb.yml +++ b/docker/compose/docker-compose.mariadb.yml @@ -54,11 +54,6 @@ services: - broker ports: - "8000:8000" - healthcheck: - test: ["CMD", "curl", "-f", "http://localhost:8000"] - interval: 30s - timeout: 10s - retries: 5 volumes: - data:/usr/src/paperless/data - media:/usr/src/paperless/media @@ -73,7 +68,6 @@ services: PAPERLESS_DBPASS: paperless # only needed if non-default password PAPERLESS_DBPORT: 3306 - volumes: data: media: diff --git a/docker/compose/docker-compose.portainer.yml b/docker/compose/docker-compose.portainer.yml index eb6a37b4c..a4222bfa4 100644 --- a/docker/compose/docker-compose.portainer.yml +++ b/docker/compose/docker-compose.portainer.yml @@ -54,11 +54,6 @@ services: - broker ports: - "8010:8000" - healthcheck: - test: ["CMD", "curl", "-fs", "-S", "--max-time", "2", "http://localhost:8000"] - interval: 30s - timeout: 10s - retries: 5 volumes: - data:/usr/src/paperless/data - media:/usr/src/paperless/media diff --git a/docker/compose/docker-compose.postgres-tika.yml b/docker/compose/docker-compose.postgres-tika.yml index 5ec2595c1..f1face8a7 100644 --- a/docker/compose/docker-compose.postgres-tika.yml +++ b/docker/compose/docker-compose.postgres-tika.yml @@ -58,11 +58,6 @@ services: - tika ports: - "8000:8000" - healthcheck: - test: ["CMD", "curl", "-fs", "-S", "--max-time", "2", "http://localhost:8000"] - interval: 30s - timeout: 10s - retries: 5 volumes: - data:/usr/src/paperless/data - media:/usr/src/paperless/media diff --git a/docker/compose/docker-compose.postgres.yml b/docker/compose/docker-compose.postgres.yml index 4a0d7d11e..bb5b2dd3e 100644 --- a/docker/compose/docker-compose.postgres.yml +++ b/docker/compose/docker-compose.postgres.yml @@ -52,11 +52,6 @@ services: - broker ports: - "8000:8000" - healthcheck: - test: ["CMD", "curl", "-fs", "-S", "--max-time", "2", "http://localhost:8000"] - interval: 30s - timeout: 10s - retries: 5 volumes: - data:/usr/src/paperless/data - media:/usr/src/paperless/media @@ -67,7 +62,6 @@ services: PAPERLESS_REDIS: redis://broker:6379 PAPERLESS_DBHOST: db - volumes: data: media: diff --git a/docker/compose/docker-compose.sqlite-tika.yml b/docker/compose/docker-compose.sqlite-tika.yml index ed3842224..1dcc5a156 100644 --- a/docker/compose/docker-compose.sqlite-tika.yml +++ b/docker/compose/docker-compose.sqlite-tika.yml @@ -47,11 +47,6 @@ services: - tika ports: - "8000:8000" - healthcheck: - test: ["CMD", "curl", "-fs", "-S", "--max-time", "2", "http://localhost:8000"] - interval: 30s - timeout: 10s - retries: 5 volumes: - data:/usr/src/paperless/data - media:/usr/src/paperless/media diff --git a/docker/compose/docker-compose.sqlite.yml b/docker/compose/docker-compose.sqlite.yml index a6c0f2bbe..ab4d25b0b 100644 --- a/docker/compose/docker-compose.sqlite.yml +++ b/docker/compose/docker-compose.sqlite.yml @@ -38,11 +38,6 @@ services: - broker ports: - "8000:8000" - healthcheck: - test: ["CMD", "curl", "-fs", "-S", "--max-time", "2", "http://localhost:8000"] - interval: 30s - timeout: 10s - retries: 5 volumes: - data:/usr/src/paperless/data - media:/usr/src/paperless/media @@ -52,7 +47,6 @@ services: environment: PAPERLESS_REDIS: redis://broker:6379 - volumes: data: media: