Compare commits

...

20 Commits

Author SHA1 Message Date
Trenton Holmes
6015cc0e4a Bumps version to 2.3.2 2024-01-07 17:02:36 -08:00
Trenton Holmes
f9926d77d5 Merge remote-tracking branch 'origin/dev' 2024-01-07 16:47:52 -08:00
Colin Hebert
4f85dcecfc Deployment: Use the default Docker healthcheck from the Dockerfile (Part 2) (#5224)
* Set default healthcheck

* Rely on default healthcheck
2024-01-07 22:49:29 +00:00
github-actions[bot]
30c31a3d4c New Crowdin translations by GitHub Action (#5309)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2024-01-07 14:37:33 -08:00
shamoon
c64667d396 Fix: workflow assignment of customfield fails if field exists in v2.3.1 (#5302) 2024-01-07 22:27:57 +00:00
github-actions[bot]
9f6613fe05 New Crowdin translations by GitHub Action (#5268)
Co-authored-by: Crowdin Bot <support+bot@crowdin.com>
2024-01-07 14:19:57 -08:00
Trenton H
ea47af7034 Fixes the user arguments json field decoding (#5307) 2024-01-07 14:17:51 -08:00
shamoon
d46abeff01 Fix: empty match field cannot be saved (#5301) 2024-01-07 22:10:26 +00:00
Trenton H
2b39697ffb Fixes usages of UTC datetime instead of local datetime (#5304) 2024-01-07 13:57:40 -08:00
shamoon
4b00a72ff5 Fix: path fnmatch case note 2024-01-07 10:48:04 -08:00
shamoon
e590b2482e Update frontend strings 2024-01-07 08:46:32 -08:00
github-actions[bot]
eb7dd80410 Changelog v2.3.1 - GHA (#5283)
Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
2024-01-07 08:44:12 -08:00
shamoon
86338465fb Fix: workflow edit form loses unsaved changes in v2.3.1 (#5299) 2024-01-07 08:16:58 -08:00
shamoon
a41dbdd12c Reset dev version string 2024-01-06 22:43:25 -08:00
shamoon
1e10a438cd Bump version to 2.3.1 2024-01-06 22:42:35 -08:00
shamoon
ab34ea724d Merge branch 'dev' 2024-01-06 22:42:16 -08:00
shamoon
fd8bfe1a80 Fix: edit workflow form not displaying trigger settings in v2.3.0 (#5276) 2024-01-06 17:27:49 +00:00
Trenton H
9043f45350 Adds more documentation for OCR_PAGES and prevents using 0 for actual OCR (#5275) 2024-01-06 09:06:41 -08:00
github-actions[bot]
5921e6d13e [Documentation] Add v2.3.0 changelog (#5263)
* Changelog v2.3.0 - GHA

* Re-categorize some PRs

---------

Co-authored-by: github-actions <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: shamoon <4887959+shamoon@users.noreply.github.com>
2024-01-06 09:06:23 -08:00
shamoon
ee2bfe2350 Reset dev version string 2024-01-05 22:12:29 -08:00
62 changed files with 990 additions and 855 deletions

View File

@@ -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

View File

@@ -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:

View File

@@ -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

View File

@@ -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

View File

@@ -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:

View File

@@ -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

View File

@@ -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:

View File

@@ -1,5 +1,99 @@
# Changelog
## paperless-ngx 2.3.1
### Bug Fixes
- Fix: edit workflow form not displaying trigger settings [@shamoon](https://github.com/shamoon) ([#5276](https://github.com/paperless-ngx/paperless-ngx/pull/5276))
- Fix: Prevent passing 0 pages to OCRMyPDF [@stumpylog](https://github.com/stumpylog) ([#5275](https://github.com/paperless-ngx/paperless-ngx/pull/5275))
### All App Changes
<details>
<summary>2 changes</summary>
- Fix: edit workflow form not displaying trigger settings [@shamoon](https://github.com/shamoon) ([#5276](https://github.com/paperless-ngx/paperless-ngx/pull/5276))
- Fix: Prevent passing 0 pages to OCRMyPDF [@stumpylog](https://github.com/stumpylog) ([#5275](https://github.com/paperless-ngx/paperless-ngx/pull/5275))
</details>
## paperless-ngx 2.3.0
### Notable Changes
- Feature: Workflows [@shamoon](https://github.com/shamoon) ([#5121](https://github.com/paperless-ngx/paperless-ngx/pull/5121))
- Feature: Allow setting backend configuration settings via the UI [@stumpylog](https://github.com/stumpylog) ([#5126](https://github.com/paperless-ngx/paperless-ngx/pull/5126))
### Features
- Feature: Workflows [@shamoon](https://github.com/shamoon) ([#5121](https://github.com/paperless-ngx/paperless-ngx/pull/5121))
- Feature: Allow setting backend configuration settings via the UI [@stumpylog](https://github.com/stumpylog) ([#5126](https://github.com/paperless-ngx/paperless-ngx/pull/5126))
- Enhancement: fetch mails in bulk [@falkenbt](https://github.com/falkenbt) ([#5249](https://github.com/paperless-ngx/paperless-ngx/pull/5249))
- Enhancement: add parameter to post_document API [@bevanjkay](https://github.com/bevanjkay) ([#5217](https://github.com/paperless-ngx/paperless-ngx/pull/5217))
### Bug Fixes
- Chore: Replaces deprecated Django alias with standard library [@stumpylog](https://github.com/stumpylog) ([#5262](https://github.com/paperless-ngx/paperless-ngx/pull/5262))
- Fix: Crash in barcode ASN reading when the file type isn't supported [@stumpylog](https://github.com/stumpylog) ([#5261](https://github.com/paperless-ngx/paperless-ngx/pull/5261))
- Fix: Allows pre-consume scripts to modify the working path again [@stumpylog](https://github.com/stumpylog) ([#5260](https://github.com/paperless-ngx/paperless-ngx/pull/5260))
- Change: Use fnmatch for more sane workflow path matching [@shamoon](https://github.com/shamoon) ([#5250](https://github.com/paperless-ngx/paperless-ngx/pull/5250))
- Fix: zip exports not respecting the --delete option [@stumpylog](https://github.com/stumpylog) ([#5245](https://github.com/paperless-ngx/paperless-ngx/pull/5245))
- Fix: correctly format tip admonition [@ChrisRBe](https://github.com/ChrisRBe) ([#5229](https://github.com/paperless-ngx/paperless-ngx/pull/5229))
- Fix: filename format remove none when part of directory [@shamoon](https://github.com/shamoon) ([#5210](https://github.com/paperless-ngx/paperless-ngx/pull/5210))
- Fix: Improve Performance for Listing and Paginating Documents [@antoinelibert](https://github.com/antoinelibert) ([#5195](https://github.com/paperless-ngx/paperless-ngx/pull/5195))
- Fix: Disable custom field remove button if user does not have permissions [@shamoon](https://github.com/shamoon) ([#5194](https://github.com/paperless-ngx/paperless-ngx/pull/5194))
- Fix: overlapping button focus highlight on login [@shamoon](https://github.com/shamoon) ([#5193](https://github.com/paperless-ngx/paperless-ngx/pull/5193))
- Fix: symmetric doc links with target doc value None [@shamoon](https://github.com/shamoon) ([#5187](https://github.com/paperless-ngx/paperless-ngx/pull/5187))
- Fix: setting empty doc link with docs to be removed [@shamoon](https://github.com/shamoon) ([#5174](https://github.com/paperless-ngx/paperless-ngx/pull/5174))
- Enhancement: improve validation of custom field values [@shamoon](https://github.com/shamoon) ([#5166](https://github.com/paperless-ngx/paperless-ngx/pull/5166))
- Fix: type casting of db values for 'shared by me' filter [@shamoon](https://github.com/shamoon) ([#5155](https://github.com/paperless-ngx/paperless-ngx/pull/5155))
### Documentation
- Fix: correctly format tip admonition [@ChrisRBe](https://github.com/ChrisRBe) ([#5229](https://github.com/paperless-ngx/paperless-ngx/pull/5229))
### Maintenance
- Chore(deps): Bump the actions group with 5 updates [@dependabot](https://github.com/dependabot) ([#5203](https://github.com/paperless-ngx/paperless-ngx/pull/5203))
### Dependencies
<details>
<summary>4 changes</summary>
- Chore(deps): Bump the actions group with 5 updates [@dependabot](https://github.com/dependabot) ([#5203](https://github.com/paperless-ngx/paperless-ngx/pull/5203))
- Chore(deps): Bump the frontend-angular-dependencies group in /src-ui with 10 updates [@dependabot](https://github.com/dependabot) ([#5204](https://github.com/paperless-ngx/paperless-ngx/pull/5204))
- Chore(deps-dev): Bump [@<!---->types/node from 20.10.4 to 20.10.6 in /src-ui @dependabot](https://github.com/<!---->types/node from 20.10.4 to 20.10.6 in /src-ui @dependabot) ([#5207](https://github.com/paperless-ngx/paperless-ngx/pull/5207))
- Chore(deps-dev): Bump the frontend-eslint-dependencies group in /src-ui with 3 updates [@dependabot](https://github.com/dependabot) ([#5205](https://github.com/paperless-ngx/paperless-ngx/pull/5205))
</details>
### All App Changes
<details>
<summary>21 changes</summary>
- Chore: Replaces deprecated Django alias with standard library [@stumpylog](https://github.com/stumpylog) ([#5262](https://github.com/paperless-ngx/paperless-ngx/pull/5262))
- Fix: Crash in barcode ASN reading when the file type isn't supported [@stumpylog](https://github.com/stumpylog) ([#5261](https://github.com/paperless-ngx/paperless-ngx/pull/5261))
- Fix: Allows pre-consume scripts to modify the working path again [@stumpylog](https://github.com/stumpylog) ([#5260](https://github.com/paperless-ngx/paperless-ngx/pull/5260))
- Enhancement: add basic filters for listing of custom fields [@shamoon](https://github.com/shamoon) ([#5257](https://github.com/paperless-ngx/paperless-ngx/pull/5257))
- Change: Use fnmatch for more sane workflow path matching [@shamoon](https://github.com/shamoon) ([#5250](https://github.com/paperless-ngx/paperless-ngx/pull/5250))
- Enhancement: fetch mails in bulk [@falkenbt](https://github.com/falkenbt) ([#5249](https://github.com/paperless-ngx/paperless-ngx/pull/5249))
- Fix: zip exports not respecting the --delete option [@stumpylog](https://github.com/stumpylog) ([#5245](https://github.com/paperless-ngx/paperless-ngx/pull/5245))
- Enhancement: add parameter to post_document API [@bevanjkay](https://github.com/bevanjkay) ([#5217](https://github.com/paperless-ngx/paperless-ngx/pull/5217))
- Feature: Workflows [@shamoon](https://github.com/shamoon) ([#5121](https://github.com/paperless-ngx/paperless-ngx/pull/5121))
- Fix: filename format remove none when part of directory [@shamoon](https://github.com/shamoon) ([#5210](https://github.com/paperless-ngx/paperless-ngx/pull/5210))
- Chore(deps): Bump the frontend-angular-dependencies group in /src-ui with 10 updates [@dependabot](https://github.com/dependabot) ([#5204](https://github.com/paperless-ngx/paperless-ngx/pull/5204))
- Chore(deps-dev): Bump [@<!---->types/node from 20.10.4 to 20.10.6 in /src-ui @dependabot](https://github.com/<!---->types/node from 20.10.4 to 20.10.6 in /src-ui @dependabot) ([#5207](https://github.com/paperless-ngx/paperless-ngx/pull/5207))
- Chore(deps-dev): Bump the frontend-eslint-dependencies group in /src-ui with 3 updates [@dependabot](https://github.com/dependabot) ([#5205](https://github.com/paperless-ngx/paperless-ngx/pull/5205))
- Fix: Improve Performance for Listing and Paginating Documents [@antoinelibert](https://github.com/antoinelibert) ([#5195](https://github.com/paperless-ngx/paperless-ngx/pull/5195))
- Fix: Disable custom field remove button if user does not have permissions [@shamoon](https://github.com/shamoon) ([#5194](https://github.com/paperless-ngx/paperless-ngx/pull/5194))
- Fix: overlapping button focus highlight on login [@shamoon](https://github.com/shamoon) ([#5193](https://github.com/paperless-ngx/paperless-ngx/pull/5193))
- Fix: symmetric doc links with target doc value None [@shamoon](https://github.com/shamoon) ([#5187](https://github.com/paperless-ngx/paperless-ngx/pull/5187))
- Fix: setting empty doc link with docs to be removed [@shamoon](https://github.com/shamoon) ([#5174](https://github.com/paperless-ngx/paperless-ngx/pull/5174))
- Feature: Allow setting backend configuration settings via the UI [@stumpylog](https://github.com/stumpylog) ([#5126](https://github.com/paperless-ngx/paperless-ngx/pull/5126))
- Enhancement: improve validation of custom field values [@shamoon](https://github.com/shamoon) ([#5166](https://github.com/paperless-ngx/paperless-ngx/pull/5166))
- Fix: type casting of db values for 'shared by me' filter [@shamoon](https://github.com/shamoon) ([#5155](https://github.com/paperless-ngx/paperless-ngx/pull/5155))
</details>
## paperless-ngx 2.2.1
### Bug Fixes

View File

@@ -665,11 +665,13 @@ completely.
Specifying 1 here will only use the first page.
The value must be greater than or equal to 1 to be used.
When combined with `PAPERLESS_OCR_MODE=redo` or
`PAPERLESS_OCR_MODE=force`, paperless will not modify any text it
finds on excluded pages and copy it verbatim.
Defaults to 0, which disables this feature and always uses all
Defaults to unset, which disables this feature and always uses all
pages.
#### [`PAPERLESS_OCR_IMAGE_DPI=<num>`](#PAPERLESS_OCR_IMAGE_DPI) {#PAPERLESS_OCR_IMAGE_DPI}
@@ -683,7 +685,7 @@ fails, it uses this value as a fallback.
Set this to the DPI your scanner produces images at.
Default is none, which will automatically calculate image DPI so
Defaults to unset, which will automatically calculate image DPI so
that the produced PDF documents are A4 sized.
#### [`PAPERLESS_OCR_MAX_IMAGE_PIXELS=<num>`](#PAPERLESS_OCR_MAX_IMAGE_PIXELS) {#PAPERLESS_OCR_MAX_IMAGE_PIXELS}

View File

@@ -3487,8 +3487,8 @@
<context context-type="linenumber">185</context>
</context-group>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
@@ -3547,63 +3547,63 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
</trans-unit>
<trans-unit id="526966086395145275" datatype="html">
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
</trans-unit>
<trans-unit id="7502272564743467653" datatype="html">
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
</trans-unit>
<trans-unit id="8696908693776094667" datatype="html">
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
</trans-unit>
<trans-unit id="7858311467093621703" datatype="html">
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
</trans-unit>
<trans-unit id="7955486237346046731" datatype="html">
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
</trans-unit>
<trans-unit id="5502398334173581061" datatype="html">
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
</trans-unit>
<trans-unit id="3138206142174978019" datatype="html">
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
</trans-unit>
<trans-unit id="5996779210524133604" datatype="html">
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
</trans-unit>
<trans-unit id="1616102757855967475" datatype="html">

View File

@@ -182,7 +182,7 @@
<pngx-input-text i18n-title title="Filter filename" formControlName="filter_filename" i18n-hint hint="Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." [error]="error?.filter_filename"></pngx-input-text>
@if (formGroup.get('type').value === WorkflowTriggerType.Consumption) {
<pngx-input-select i18n-title title="Filter sources" [items]="sourceOptions" [multiple]="true" formControlName="sources" [error]="error?.sources"></pngx-input-select>
<pngx-input-text i18n-title title="Filter path" formControlName="filter_path" i18n-hint hint="Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.</a>" [error]="error?.filter_path"></pngx-input-text>
<pngx-input-text i18n-title title="Filter path" formControlName="filter_path" i18n-hint hint="Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a>" [error]="error?.filter_path"></pngx-input-text>
<pngx-input-select i18n-title title="Filter mail rule" [items]="mailRules" [allowNull]="true" formControlName="filter_mailrule" i18n-hint hint="Apply to documents consumed via this mail rule." [error]="error?.filter_mailrule"></pngx-input-select>
}
@if (formGroup.get('type').value === WorkflowTriggerType.DocumentAdded || formGroup.get('type').value === WorkflowTriggerType.DocumentUpdated) {

View File

@@ -66,7 +66,7 @@ const workflow: Workflow = {
],
}
describe('ConsumptionTemplateEditDialogComponent', () => {
describe('WorkflowEditDialogComponent', () => {
let component: WorkflowEditDialogComponent
let settingsService: SettingsService
let fixture: ComponentFixture<WorkflowEditDialogComponent>
@@ -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[]
>)

View File

@@ -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(MATCH_NONE),
match: new FormControl(''),
is_insensitive: new FormControl(true),
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,
@@ -242,9 +257,12 @@ export class WorkflowEditDialogComponent
filter_has_tags: [],
filter_has_correspondent: null,
filter_has_document_type: null,
})
this.updateTriggerActionFields()
matching_algorithm: MATCH_NONE,
match: '',
is_insensitive: true,
}
this.object.triggers.push(trigger)
this.createTriggerField(trigger)
}
get actionTypeOptions() {
@@ -259,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: [],
@@ -272,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<WorkflowAction[]>) {
@@ -293,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()
}
}

View File

@@ -5,7 +5,7 @@ export const environment = {
apiBaseUrl: document.baseURI + 'api/',
apiVersion: '4',
appTitle: 'Paperless-ngx',
version: '2.3.0',
version: '2.3.2',
webSocketHost: window.location.host,
webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:',
webSocketBaseUrl: base_url.pathname + 'ws/',

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">مسار التصفية</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">تطبيق على المستندات التي تتطابق مع هذا المسار. البطاقات البرية المحددة كما * مسموح بها. حالة غير حساسة.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">‏مِلَفّ الاستهلاك</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">تحميل API</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">جلب البريد</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Филтриране на път</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Прилага се към документи, които отговарят на този път. Позволени са заместващи символи, посочени като *. Нечувствителен към големината на буквите.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">Папка за консумация</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">Качване от API</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Извличане на поща</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Filtra ruta</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Aplica als documents que coincideixen amb aquest camí. Es permeten els comodins especificats com a *. Cas insensible.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">Directori consumició</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">Pujada API</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Recollida Correu</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="translated">Començada Consumpció</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="translated">Document Afegit</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="translated">Document Actualitzat</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="translated">Assignació</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="translated">Afegir flux de treball</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="translated">Editar flux</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -393,13 +393,13 @@
</context-group>
<target state="final">Verwalten Sie E-Mail-Konten und Regeln für den automatischen Import von Dokumenten.</target>
</trans-unit>
<trans-unit id="2258659358902319601" datatype="html">
<trans-unit id="2258659358902319601" datatype="html" approved="yes">
<source>Workflows give you more control over the document pipeline.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context>
</context-group>
<target state="translated">Workflows geben Ihnen mehr Kontrolle über die Dokumentenpipeline.</target>
<target state="final">Arbeitsabläufe geben Ihnen mehr Kontrolle über die Dokumentenverarbeitung.</target>
</trans-unit>
<trans-unit id="4680387114119209483" datatype="html" approved="yes">
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
@@ -441,7 +441,7 @@
</context-group>
<target state="final">Wir bedanken uns im Namen aller Mitwirkenden dieses gemeinschaftlich unterstützten Projekts, dass Sie Paperless-ngx benutzen!</target>
</trans-unit>
<trans-unit id="3008420115644088420" datatype="html">
<trans-unit id="3008420115644088420" datatype="html" approved="yes">
<source>Configuration</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
@@ -455,9 +455,9 @@
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">280</context>
</context-group>
<target state="translated">Konfiguration</target>
<target state="final">Konfiguration</target>
</trans-unit>
<trans-unit id="187187500641108332" datatype="html">
<trans-unit id="187187500641108332" datatype="html" approved="yes">
<source>
<x id="INTERPOLATION" equiv-text="ategory}}"/>
</source>
@@ -477,23 +477,23 @@
<context context-type="sourcefile">src/app/components/common/permissions-select/permissions-select.component.html</context>
<context context-type="linenumber">22</context>
</context-group>
<target state="needs-translation"><x id="INTERPOLATION" equiv-text="ategory}}"/></target>
<target state="final"><x id="INTERPOLATION" equiv-text="ategory}}"/></target>
</trans-unit>
<trans-unit id="7991430199894172363" datatype="html">
<trans-unit id="7991430199894172363" datatype="html" approved="yes">
<source>Read the documentation about this setting</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
<context context-type="linenumber">19</context>
</context-group>
<target state="translated">Lesen Sie die Dokumentation zu dieser Einstellung</target>
<target state="final">Lesen Sie die Dokumentation zu dieser Einstellung</target>
</trans-unit>
<trans-unit id="2180291763949669799" datatype="html">
<trans-unit id="2180291763949669799" datatype="html" approved="yes">
<source>Enable</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
<context context-type="linenumber">30</context>
</context-group>
<target state="needs-translation">Enable</target>
<target state="final">Aktivieren</target>
</trans-unit>
<trans-unit id="3823219296477075982" datatype="html" approved="yes">
<source>Discard</source>
@@ -571,37 +571,37 @@
</context-group>
<target state="final">Speichern</target>
</trans-unit>
<trans-unit id="5079885666748292382" datatype="html">
<trans-unit id="5079885666748292382" datatype="html" approved="yes">
<source>Error retrieving config</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/admin/config/config.component.ts</context>
<context context-type="linenumber">79</context>
</context-group>
<target state="translated">Fehler beim Abrufen der Konfiguration</target>
<target state="final">Fehler beim Abrufen der Konfiguration</target>
</trans-unit>
<trans-unit id="1172622527269118932" datatype="html">
<trans-unit id="1172622527269118932" datatype="html" approved="yes">
<source>Invalid JSON</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/admin/config/config.component.ts</context>
<context context-type="linenumber">105</context>
</context-group>
<target state="needs-translation">Invalid JSON</target>
<target state="final">Ungültige JSON</target>
</trans-unit>
<trans-unit id="5103146006962696736" datatype="html">
<trans-unit id="5103146006962696736" datatype="html" approved="yes">
<source>Configuration updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/admin/config/config.component.ts</context>
<context context-type="linenumber">148</context>
</context-group>
<target state="translated">Einstellungen aktualisiert</target>
<target state="final">Einstellungen aktualisiert</target>
</trans-unit>
<trans-unit id="1664963291286452273" datatype="html">
<trans-unit id="1664963291286452273" datatype="html" approved="yes">
<source>An error occurred updating configuration</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/admin/config/config.component.ts</context>
<context context-type="linenumber">153</context>
</context-group>
<target state="translated">Fehler beim Aktualisieren der Konfiguration</target>
<target state="final">Fehler beim Aktualisieren der Konfiguration</target>
</trans-unit>
<trans-unit id="4804785061014590286" datatype="html" approved="yes">
<source>Logs</source>
@@ -1657,7 +1657,7 @@
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">117</context>
</context-group>
<target state="final">Beim Speichern der Einstellungen ist ein Fehler aufgetreten.</target>
<target state="final">Fehler beim Speichern der Einstellungen.</target>
</trans-unit>
<trans-unit id="5260584511980773458" datatype="html" approved="yes">
<source>Error while storing settings on server.</source>
@@ -2161,7 +2161,7 @@
<context context-type="sourcefile">src/app/components/admin/users-groups/users-groups.component.ts</context>
<context context-type="linenumber">124</context>
</context-group>
<target state="final">Gelöschter Benutzer</target>
<target state="final">Benutzer gelöscht</target>
</trans-unit>
<trans-unit id="1942566571910298572" datatype="html" approved="yes">
<source>Error deleting user.</source>
@@ -2209,7 +2209,7 @@
<context context-type="sourcefile">src/app/components/admin/users-groups/users-groups.component.ts</context>
<context context-type="linenumber">174</context>
</context-group>
<target state="final">Gelöschte Gruppe</target>
<target state="final">Gruppe gelöscht</target>
</trans-unit>
<trans-unit id="8850738980935204840" datatype="html" approved="yes">
<source>Error deleting group.</source>
@@ -2452,7 +2452,7 @@
</context-group>
<target state="final">Benutzerdefinierte Felder</target>
</trans-unit>
<trans-unit id="2889601918256567804" datatype="html">
<trans-unit id="2889601918256567804" datatype="html" approved="yes">
<source>Workflows</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
@@ -2466,7 +2466,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<target state="translated">Arbeitsabläufe</target>
<target state="final">Arbeitsabläufe</target>
</trans-unit>
<trans-unit id="1292737233370901804" datatype="html" approved="yes">
<source>Mail</source>
@@ -2566,7 +2566,7 @@
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.ts</context>
<context context-type="linenumber">283</context>
</context-group>
<target state="final">Beim Speichern der Einstellungen für die Updateüberprüfung ist ein Fehler aufgetreten.</target>
<target state="final">Fehler beim Speichern der Einstellungen für die Aktualisierungsüberprüfung.</target>
</trans-unit>
<trans-unit id="8700121026680200191" datatype="html" approved="yes">
<source>Clear</source>
@@ -3656,7 +3656,7 @@
</context-group>
<target state="final">Sortierreihenfolge</target>
</trans-unit>
<trans-unit id="4816216590591222133" datatype="html">
<trans-unit id="4816216590591222133" datatype="html" approved="yes">
<source>Enabled</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
@@ -3666,9 +3666,9 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">27</context>
</context-group>
<target state="translated">Aktiviert</target>
<target state="final">Aktiviert</target>
</trans-unit>
<trans-unit id="1586840222182376783" datatype="html">
<trans-unit id="1586840222182376783" datatype="html" approved="yes">
<source>Triggers</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
@@ -3678,47 +3678,47 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">17</context>
</context-group>
<target state="translated">Auslöser</target>
<target state="final">Auslöser</target>
</trans-unit>
<trans-unit id="2033923486957762916" datatype="html">
<trans-unit id="2033923486957762916" datatype="html" approved="yes">
<source>Trigger Workflow On:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">28</context>
</context-group>
<target state="needs-translation">Trigger Workflow On:</target>
<target state="final">Workflow auslösen bei:</target>
</trans-unit>
<trans-unit id="3901427285052969410" datatype="html">
<trans-unit id="3901427285052969410" datatype="html" approved="yes">
<source>Add Trigger</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">33</context>
</context-group>
<target state="translated">Auslöser hinzufügen</target>
<target state="final">Auslöser hinzufügen</target>
</trans-unit>
<trans-unit id="6882912390704300247" datatype="html">
<trans-unit id="6882912390704300247" datatype="html" approved="yes">
<source>Apply Actions:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">72</context>
</context-group>
<target state="translated">Aktionen anwenden:</target>
<target state="final">Aktionen anwenden:</target>
</trans-unit>
<trans-unit id="51883444329775670" datatype="html">
<trans-unit id="51883444329775670" datatype="html" approved="yes">
<source>Add Action</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">77</context>
</context-group>
<target state="translated">Aktion hinzufügen</target>
<target state="final">Aktion hinzufügen</target>
</trans-unit>
<trans-unit id="6417103744331194518" datatype="html">
<trans-unit id="6417103744331194518" datatype="html" approved="yes">
<source>Action type</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">98</context>
</context-group>
<target state="translated">Aktionstyp</target>
<target state="final">Aktionstyp</target>
</trans-unit>
<trans-unit id="6019822389883736115" datatype="html" approved="yes">
<source>Assign title</source>
@@ -3728,13 +3728,13 @@
</context-group>
<target state="final">Titel zuweisen</target>
</trans-unit>
<trans-unit id="1098196422099517191" datatype="html">
<trans-unit id="1098196422099517191" datatype="html" approved="yes">
<source>Can include some placeholders, see &lt;a target=&apos;_blank&apos; href=&apos;https://docs.paperless-ngx.com/usage/#workflows&apos;&gt;documentation&lt;/a&gt;.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">102</context>
</context-group>
<target state="translated">Kann einige Platzhalter enthalten, siehe &lt;a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'&gt;Dokumentation&lt;/a&gt;.</target>
<target state="final">Kann einige Platzhalter enthalten, siehe &lt;a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'&gt;Dokumentation&lt;/a&gt;.</target>
</trans-unit>
<trans-unit id="6528897010417701530" datatype="html" approved="yes">
<source>Assign tags</source>
@@ -3784,21 +3784,21 @@
</context-group>
<target state="final">Bearbeitungsberechtigungen zuweisen</target>
</trans-unit>
<trans-unit id="3288318211116868972" datatype="html">
<trans-unit id="3288318211116868972" datatype="html" approved="yes">
<source>Trigger type</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">178</context>
</context-group>
<target state="translated">Auslösetyp</target>
<target state="final">Auslösertyp</target>
</trans-unit>
<trans-unit id="8727727835543352574" datatype="html">
<trans-unit id="8727727835543352574" datatype="html" approved="yes">
<source>Trigger for documents that match <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;em&gt;"/>all<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> filters specified below.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">179</context>
</context-group>
<target state="translated">Auslöser für Dokumente, die mit <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;em&gt;"/>allen<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> Filtern übereinstimmen.</target>
<target state="final">Auslöser für Dokumente, die mit <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;em&gt;"/>allen<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> unten angegebenen Filtern übereinstimmen.</target>
</trans-unit>
<trans-unit id="7467799586957602479" datatype="html" approved="yes">
<source>Filter filename</source>
@@ -3832,13 +3832,13 @@
</context-group>
<target state="final">Pfad filtern</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html" approved="yes">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="final">Auf Dokumente anwenden, die mit diesem Pfad übereinstimmen. Platzhalter wie * sind zulässig. Groß- und Kleinschreibung wird nicht beachtet.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html" approved="yes">
<source>Filter mail rule</source>
@@ -3856,51 +3856,51 @@
</context-group>
<target state="final">Auf Dokumente anwenden, die über diese E-Mail-Regel verarbeitet wurden.</target>
</trans-unit>
<trans-unit id="6840369584127435743" datatype="html">
<trans-unit id="6840369584127435743" datatype="html" approved="yes">
<source>Content matching algorithm</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">189</context>
</context-group>
<target state="translated">Algorithmus für Inhalte, die übereinstimmen</target>
<target state="final">Inhaltsabgleichsalgorithmus</target>
</trans-unit>
<trans-unit id="510635115034690805" datatype="html">
<trans-unit id="510635115034690805" datatype="html" approved="yes">
<source>Content matching pattern</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">191</context>
</context-group>
<target state="needs-translation">Content matching pattern</target>
<target state="final">Inhaltsabgleichsmuster</target>
</trans-unit>
<trans-unit id="1333789258712064056" datatype="html">
<trans-unit id="1333789258712064056" datatype="html" approved="yes">
<source>Has tags</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">200</context>
</context-group>
<target state="translated">Enhält Tags</target>
<target state="final">Hat Tags</target>
</trans-unit>
<trans-unit id="5281365940563983618" datatype="html">
<trans-unit id="5281365940563983618" datatype="html" approved="yes">
<source>Has correspondent</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">201</context>
</context-group>
<target state="translated">Hat Korrespondent</target>
<target state="final">Hat Korrespondent</target>
</trans-unit>
<trans-unit id="4806713133917046341" datatype="html">
<trans-unit id="4806713133917046341" datatype="html" approved="yes">
<source>Has document type</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">202</context>
</context-group>
<target state="translated">Hat Dokumentyp</target>
<target state="final">Hat Dokumenttyp</target>
</trans-unit>
<trans-unit id="4626030417479279989" datatype="html" approved="yes">
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="final">Importordner</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="final">API-Upload</target>
</trans-unit>
@@ -3916,57 +3916,57 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="final">E-Mail-Abruf</target>
</trans-unit>
<trans-unit id="8696908693776094667" datatype="html">
<trans-unit id="8696908693776094667" datatype="html" approved="yes">
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
<target state="final">Verarbeitung gestartet</target>
</trans-unit>
<trans-unit id="7858311467093621703" datatype="html">
<trans-unit id="7858311467093621703" datatype="html" approved="yes">
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="translated">Dokument hinzugefügt</target>
<target state="final">Dokument hinzugefügt</target>
</trans-unit>
<trans-unit id="7955486237346046731" datatype="html">
<trans-unit id="7955486237346046731" datatype="html" approved="yes">
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="translated">Dokument aktualisiert</target>
<target state="final">Dokument aktualisiert</target>
</trans-unit>
<trans-unit id="5502398334173581061" datatype="html">
<trans-unit id="5502398334173581061" datatype="html" approved="yes">
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="translated">Zuordnung</target>
<target state="final">Zuordnung</target>
</trans-unit>
<trans-unit id="3138206142174978019" datatype="html">
<trans-unit id="3138206142174978019" datatype="html" approved="yes">
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="translated">Neuen Arbeitsablauf erstellen</target>
<target state="final">Neuen Arbeitsablauf erstellen</target>
</trans-unit>
<trans-unit id="5996779210524133604" datatype="html">
<trans-unit id="5996779210524133604" datatype="html" approved="yes">
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="translated">Arbeitsablauf bearbeiten</target>
<target state="final">Arbeitsablauf bearbeiten</target>
</trans-unit>
<trans-unit id="1616102757855967475" datatype="html" approved="yes">
<source>All</source>
@@ -6867,77 +6867,77 @@
</context-group>
<target state="final">Möchten Sie das Tag „<x id="PH" equiv-text="object.name"/>“ wirklich löschen?</target>
</trans-unit>
<trans-unit id="2437630016855517844" datatype="html">
<trans-unit id="2437630016855517844" datatype="html" approved="yes">
<source>Add Workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">6</context>
</context-group>
<target state="translated">Arbeitsablauf hinzufügen</target>
<target state="final">Arbeitsablauf hinzufügen</target>
</trans-unit>
<trans-unit id="5769292297914455214" datatype="html">
<trans-unit id="5769292297914455214" datatype="html" approved="yes">
<source>Disabled</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">27</context>
</context-group>
<target state="translated">Deaktiviert</target>
<target state="final">Deaktiviert</target>
</trans-unit>
<trans-unit id="1624023882313260402" datatype="html">
<trans-unit id="1624023882313260402" datatype="html" approved="yes">
<source>No workflows defined.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Keine Arbeitsabläufe festgelegt.</target>
<target state="final">Keine Arbeitsabläufe definiert.</target>
</trans-unit>
<trans-unit id="4200688335642457098" datatype="html">
<trans-unit id="4200688335642457098" datatype="html" approved="yes">
<source>Saved workflow &quot;<x id="PH" equiv-text="newWorkflow.name"/>&quot;.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">79</context>
</context-group>
<target state="translated">Arbeitsablauf "<x id="PH" equiv-text="newWorkflow.name"/>" gespeichert.</target>
<target state="final">Arbeitsablauf <x id="PH" equiv-text="newWorkflow.name"/> gespeichert.</target>
</trans-unit>
<trans-unit id="7593065565369163325" datatype="html">
<trans-unit id="7593065565369163325" datatype="html" approved="yes">
<source>Error saving workflow.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">87</context>
</context-group>
<target state="translated">Fehler beim Speichern des Arbeitsablaufs.</target>
<target state="final">Fehler beim Speichern des Arbeitsablaufs.</target>
</trans-unit>
<trans-unit id="563460864902055482" datatype="html">
<trans-unit id="563460864902055482" datatype="html" approved="yes">
<source>Confirm delete workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">95</context>
</context-group>
<target state="translated">Löschen des Arbeitsablaufs bestätigen</target>
<target state="final">Löschen des Arbeitsablaufs bestätigen</target>
</trans-unit>
<trans-unit id="6874008462443189248" datatype="html">
<trans-unit id="6874008462443189248" datatype="html" approved="yes">
<source>This operation will permanently delete this workflow.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">96</context>
</context-group>
<target state="translated">Dieser Vorgang löscht diesen Arbeitsablauf dauerhaft.</target>
<target state="final">Dieser Vorgang wird diesen Arbeitsablauf dauerhaft löschen.</target>
</trans-unit>
<trans-unit id="1848226135059921165" datatype="html">
<trans-unit id="1848226135059921165" datatype="html" approved="yes">
<source>Deleted workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">105</context>
</context-group>
<target state="translated">Gelöschter Arbeitsablauf</target>
<target state="final">Arbeitsablauf gelöscht</target>
</trans-unit>
<trans-unit id="3177411222429626224" datatype="html">
<trans-unit id="3177411222429626224" datatype="html" approved="yes">
<source>Error deleting workflow.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">110</context>
</context-group>
<target state="translated">Fehler beim Löschen des Arbeitsablaufs.</target>
<target state="final">Fehler beim Löschen des Arbeitsablaufs.</target>
</trans-unit>
<trans-unit id="2649252321173430744" datatype="html" approved="yes">
<source>Not Found</source>
@@ -7115,117 +7115,117 @@
</context-group>
<target state="final">Keine: Deaktiviere automatische Zuweisung</target>
</trans-unit>
<trans-unit id="2762851116637676072" datatype="html">
<trans-unit id="2762851116637676072" datatype="html" approved="yes">
<source>OCR Settings</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="translated">OCR-Einstellungen</target>
<target state="final">OCR-Einstellungen</target>
</trans-unit>
<trans-unit id="1313137480169642057" datatype="html">
<trans-unit id="1313137480169642057" datatype="html" approved="yes">
<source>Output Type</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">73</context>
</context-group>
<target state="translated">Ausgangstyp</target>
<target state="final">Ausgabetyp</target>
</trans-unit>
<trans-unit id="2826581353496868063" datatype="html">
<trans-unit id="2826581353496868063" datatype="html" approved="yes">
<source>Language</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">81</context>
</context-group>
<target state="translated">Sprache</target>
<target state="final">Sprache</target>
</trans-unit>
<trans-unit id="3817498941817715969" datatype="html">
<trans-unit id="3817498941817715969" datatype="html" approved="yes">
<source>Pages</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">88</context>
</context-group>
<target state="translated">Seiten</target>
<target state="final">Seiten</target>
</trans-unit>
<trans-unit id="1713271461473302108" datatype="html">
<trans-unit id="1713271461473302108" datatype="html" approved="yes">
<source>Mode</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">95</context>
</context-group>
<target state="translated">Modus</target>
<target state="final">Modus</target>
</trans-unit>
<trans-unit id="6114528299376689399" datatype="html">
<trans-unit id="6114528299376689399" datatype="html" approved="yes">
<source>Skip Archive File</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">103</context>
</context-group>
<target state="translated">Archivdatei überspringen</target>
<target state="final">Archivdatei überspringen</target>
</trans-unit>
<trans-unit id="1115402553541327390" datatype="html">
<trans-unit id="1115402553541327390" datatype="html" approved="yes">
<source>Image DPI</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">111</context>
</context-group>
<target state="translated">Bild DPI</target>
<target state="final">Bild-DPI</target>
</trans-unit>
<trans-unit id="6352596107300820129" datatype="html">
<trans-unit id="6352596107300820129" datatype="html" approved="yes">
<source>Clean</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Clean</target>
<target state="final">Bereinigen</target>
</trans-unit>
<trans-unit id="725308589819024010" datatype="html">
<trans-unit id="725308589819024010" datatype="html" approved="yes">
<source>Deskew</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Deskew</target>
<target state="final">Schräglagenkorrektur</target>
</trans-unit>
<trans-unit id="6256076128297775802" datatype="html">
<trans-unit id="6256076128297775802" datatype="html" approved="yes">
<source>Rotate Pages</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">133</context>
</context-group>
<target state="translated">Seiten drehen</target>
<target state="final">Seiten rotieren</target>
</trans-unit>
<trans-unit id="8527188778859256947" datatype="html">
<trans-unit id="8527188778859256947" datatype="html" approved="yes">
<source>Rotate Pages Threshold</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">140</context>
</context-group>
<target state="needs-translation">Rotate Pages Threshold</target>
<target state="final">Schwellwert: Seiten rotieren</target>
</trans-unit>
<trans-unit id="3762131309176747817" datatype="html">
<trans-unit id="3762131309176747817" datatype="html" approved="yes">
<source>Max Image Pixels</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">147</context>
</context-group>
<target state="translated">Max. Bildpixel</target>
<target state="final">Maximale Bildpixel</target>
</trans-unit>
<trans-unit id="7846583355792281769" datatype="html">
<trans-unit id="7846583355792281769" datatype="html" approved="yes">
<source>Color Conversion Strategy</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">154</context>
</context-group>
<target state="translated">Farbkonvertierungsstrategie</target>
<target state="final">Farbkonvertierungsstrategie</target>
</trans-unit>
<trans-unit id="4696480417479207939" datatype="html">
<trans-unit id="4696480417479207939" datatype="html" approved="yes">
<source>OCR Arguments</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">162</context>
</context-group>
<target state="translated">OCR-Argumente</target>
<target state="final">OCR-Argumente</target>
</trans-unit>
<trans-unit id="5948496158474272829" datatype="html" approved="yes">
<source>Warning: You have unsaved changes to your document(s).</source>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Filtrar ruta</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Aplicar a documentos que coincidan con esta ruta. Comodines especificados como * están permitidos. No distingue mayúsculas.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">Consumir carpeta</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">Carga de API</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Buscar correo</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">API-lähetys</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -477,7 +477,7 @@
<context context-type="sourcefile">src/app/components/common/permissions-select/permissions-select.component.html</context>
<context context-type="linenumber">22</context>
</context-group>
<target state="needs-translation"><x id="INTERPOLATION" equiv-text="ategory}}"/></target>
<target state="translated"><x id="INTERPOLATION" equiv-text="ategory}}"/></target>
</trans-unit>
<trans-unit id="7991430199894172363" datatype="html">
<source>Read the documentation about this setting</source>
@@ -2452,7 +2452,7 @@
</context-group>
<target state="final">Champs personnalisés</target>
</trans-unit>
<trans-unit id="2889601918256567804" datatype="html">
<trans-unit id="2889601918256567804" datatype="html" approved="yes">
<source>Workflows</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
@@ -2466,7 +2466,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<target state="translated">Workflows</target>
<target state="final">Workflows</target>
</trans-unit>
<trans-unit id="1292737233370901804" datatype="html">
<source>Mail</source>
@@ -2494,7 +2494,7 @@
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">303,305</context>
</context-group>
<target state="translated"><x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length &gt; 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/> tâche(s) sur fichiers</target>
<target state="translated"><x id="START_BLOCK_IF" equiv-text="@if (tasksService.failedFileTasks.length &gt; 0) {"/><x id="START_TAG_SPAN_1" ctype="x-span_1" equiv-text="&lt;span&gt;"/><x id="START_TAG_SPAN" ctype="x-span" equiv-text="&lt;span class=&quot;badge bg-danger ms-2&quot;&gt;"/><x id="INTERPOLATION" equiv-text="{{tasksService.failedFileTasks.length}}"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_TAG_SPAN" ctype="x-span" equiv-text="&lt;/span&gt;"/><x id="CLOSE_BLOCK_IF" equiv-text="}"/> Tâches sur fichiers</target>
</trans-unit>
<trans-unit id="1534029177398918729" datatype="html" approved="yes">
<source>GitHub</source>
@@ -3656,7 +3656,7 @@
</context-group>
<target state="final">Ordre de tri</target>
</trans-unit>
<trans-unit id="4816216590591222133" datatype="html">
<trans-unit id="4816216590591222133" datatype="html" approved="yes">
<source>Enabled</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
@@ -3666,9 +3666,9 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">27</context>
</context-group>
<target state="translated">Activé</target>
<target state="final">Activé</target>
</trans-unit>
<trans-unit id="1586840222182376783" datatype="html">
<trans-unit id="1586840222182376783" datatype="html" approved="yes">
<source>Triggers</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
@@ -3678,47 +3678,47 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">17</context>
</context-group>
<target state="translated">Déclencheurs</target>
<target state="final">Déclencheurs</target>
</trans-unit>
<trans-unit id="2033923486957762916" datatype="html">
<trans-unit id="2033923486957762916" datatype="html" approved="yes">
<source>Trigger Workflow On:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">28</context>
</context-group>
<target state="translated">Déclencher un workflow sur :</target>
<target state="final">Déclencher un workflow sur :</target>
</trans-unit>
<trans-unit id="3901427285052969410" datatype="html">
<trans-unit id="3901427285052969410" datatype="html" approved="yes">
<source>Add Trigger</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">33</context>
</context-group>
<target state="translated">Ajouter un déclencheur</target>
<target state="final">Ajouter un déclencheur</target>
</trans-unit>
<trans-unit id="6882912390704300247" datatype="html">
<trans-unit id="6882912390704300247" datatype="html" approved="yes">
<source>Apply Actions:</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">72</context>
</context-group>
<target state="translated">Appliquer laction :</target>
<target state="final">Appliquer laction :</target>
</trans-unit>
<trans-unit id="51883444329775670" datatype="html">
<trans-unit id="51883444329775670" datatype="html" approved="yes">
<source>Add Action</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">77</context>
</context-group>
<target state="translated">Ajouter une action</target>
<target state="final">Ajouter une action</target>
</trans-unit>
<trans-unit id="6417103744331194518" datatype="html">
<trans-unit id="6417103744331194518" datatype="html" approved="yes">
<source>Action type</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">98</context>
</context-group>
<target state="translated">Type d'action</target>
<target state="final">Type d'action</target>
</trans-unit>
<trans-unit id="6019822389883736115" datatype="html" approved="yes">
<source>Assign title</source>
@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Filtrer le chemin</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Appliquer aux documents qui correspondent à ce chemin. Les caractères génériques tels que "*" sont autorisés. Insensible à la casse.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3856,21 +3856,21 @@
</context-group>
<target state="translated">Appliquer aux documents traités par cette règle de courrier.</target>
</trans-unit>
<trans-unit id="6840369584127435743" datatype="html">
<trans-unit id="6840369584127435743" datatype="html" approved="yes">
<source>Content matching algorithm</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">189</context>
</context-group>
<target state="translated">Algorithme de correspondance de contenu</target>
<target state="final">Algorithme de correspondance de contenu</target>
</trans-unit>
<trans-unit id="510635115034690805" datatype="html">
<trans-unit id="510635115034690805" datatype="html" approved="yes">
<source>Content matching pattern</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">191</context>
</context-group>
<target state="translated">Modèle de correspondance au contenu</target>
<target state="final">Modèle de correspondance au contenu</target>
</trans-unit>
<trans-unit id="1333789258712064056" datatype="html">
<source>Has tags</source>
@@ -3880,27 +3880,27 @@
</context-group>
<target state="translated">Porte les étiquettes</target>
</trans-unit>
<trans-unit id="5281365940563983618" datatype="html">
<trans-unit id="5281365940563983618" datatype="html" approved="yes">
<source>Has correspondent</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">201</context>
</context-group>
<target state="translated">A un correspondant</target>
<target state="final">A le correspondant</target>
</trans-unit>
<trans-unit id="4806713133917046341" datatype="html">
<trans-unit id="4806713133917046341" datatype="html" approved="yes">
<source>Has document type</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">202</context>
</context-group>
<target state="translated">A un type de document</target>
<target state="final">A le type de document</target>
</trans-unit>
<trans-unit id="4626030417479279989" datatype="html">
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">Dossier de traitement</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">Chargement de l'API</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Récupération du courrier</target>
</trans-unit>
@@ -3924,15 +3924,15 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
<target state="translated">Début de consommation</target>
</trans-unit>
<trans-unit id="7858311467093621703" datatype="html">
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="translated">Document ajouté</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="translated">Document mis à jour</target>
</trans-unit>
@@ -3948,23 +3948,23 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="translated">Assignation</target>
</trans-unit>
<trans-unit id="3138206142174978019" datatype="html">
<trans-unit id="3138206142174978019" datatype="html" approved="yes">
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="translated">Créer un nouveau workflow</target>
<target state="final">Créer un nouveau workflow</target>
</trans-unit>
<trans-unit id="5996779210524133604" datatype="html">
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="translated">Modifier le workflow</target>
</trans-unit>
@@ -6875,21 +6875,21 @@
</context-group>
<target state="translated">Ajouter un workflow</target>
</trans-unit>
<trans-unit id="5769292297914455214" datatype="html">
<trans-unit id="5769292297914455214" datatype="html" approved="yes">
<source>Disabled</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">27</context>
</context-group>
<target state="translated">Désactivé</target>
<target state="final">Désactivé</target>
</trans-unit>
<trans-unit id="1624023882313260402" datatype="html">
<trans-unit id="1624023882313260402" datatype="html" approved="yes">
<source>No workflows defined.</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Aucun workflow défini.</target>
<target state="final">Aucun workflow défini.</target>
</trans-unit>
<trans-unit id="4200688335642457098" datatype="html">
<source>Saved workflow &quot;<x id="PH" equiv-text="newWorkflow.name"/>&quot;.</source>
@@ -7177,7 +7177,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Clean</target>
<target state="translated">Nettoyage</target>
</trans-unit>
<trans-unit id="725308589819024010" datatype="html">
<source>Deskew</source>
@@ -7185,7 +7185,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Deskew</target>
<target state="translated">Réalignement</target>
</trans-unit>
<trans-unit id="6256076128297775802" datatype="html">
<source>Rotate Pages</source>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">מסנן לפי נתיב שמירה</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Szűrési útvonal</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">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.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">Feldolgozási mappa</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">API feltöltés</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Mail lehívás</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Filter lokasi</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">Unggah Menggunakan API</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3702,7 +3702,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">72</context>
</context-group>
<target state="needs-translation">Apply Actions:</target>
<target state="translated">Applica Azioni:</target>
</trans-unit>
<trans-unit id="51883444329775670" datatype="html">
<source>Add Action</source>
@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Filtro percorso</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Applica ai documenti che corrispondono a questo percorso. I caratteri wildcard come * sono permessi. Ignora maiuscole e minuscole.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">Cartella di elaborazione</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">Upload API</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Recupero Posta</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="translated">Documento Aggiunto</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="translated">Documento Aggiornato</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">API 업로드</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -399,7 +399,7 @@
<context context-type="sourcefile">src/app/app.component.ts</context>
<context context-type="linenumber">180</context>
</context-group>
<target state="needs-translation">Workflows give you more control over the document pipeline.</target>
<target state="translated">Workflows geven je meer controle over de verwerking van documenten.</target>
</trans-unit>
<trans-unit id="4680387114119209483" datatype="html">
<source>File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process.</source>
@@ -455,7 +455,7 @@
<context context-type="sourcefile">src/app/components/app-frame/app-frame.component.html</context>
<context context-type="linenumber">280</context>
</context-group>
<target state="needs-translation">Configuration</target>
<target state="translated">Configuratie</target>
</trans-unit>
<trans-unit id="187187500641108332" datatype="html">
<source>
@@ -477,7 +477,7 @@
<context context-type="sourcefile">src/app/components/common/permissions-select/permissions-select.component.html</context>
<context context-type="linenumber">22</context>
</context-group>
<target state="needs-translation"><x id="INTERPOLATION" equiv-text="ategory}}"/></target>
<target state="translated"><x id="INTERPOLATION" equiv-text="ategory}}"/></target>
</trans-unit>
<trans-unit id="7991430199894172363" datatype="html">
<source>Read the documentation about this setting</source>
@@ -485,7 +485,7 @@
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
<context context-type="linenumber">19</context>
</context-group>
<target state="needs-translation">Read the documentation about this setting</target>
<target state="translated">Lees de documentatie over deze instelling</target>
</trans-unit>
<trans-unit id="2180291763949669799" datatype="html">
<source>Enable</source>
@@ -493,7 +493,7 @@
<context context-type="sourcefile">src/app/components/admin/config/config.component.html</context>
<context context-type="linenumber">30</context>
</context-group>
<target state="needs-translation">Enable</target>
<target state="translated">Inschakelen</target>
</trans-unit>
<trans-unit id="3823219296477075982" datatype="html" approved="yes">
<source>Discard</source>
@@ -577,7 +577,7 @@
<context context-type="sourcefile">src/app/components/admin/config/config.component.ts</context>
<context context-type="linenumber">79</context>
</context-group>
<target state="needs-translation">Error retrieving config</target>
<target state="translated">Fout bij ophalen configuratie</target>
</trans-unit>
<trans-unit id="1172622527269118932" datatype="html">
<source>Invalid JSON</source>
@@ -585,7 +585,7 @@
<context context-type="sourcefile">src/app/components/admin/config/config.component.ts</context>
<context context-type="linenumber">105</context>
</context-group>
<target state="needs-translation">Invalid JSON</target>
<target state="translated">Ongeldige JSON</target>
</trans-unit>
<trans-unit id="5103146006962696736" datatype="html">
<source>Configuration updated</source>
@@ -593,7 +593,7 @@
<context context-type="sourcefile">src/app/components/admin/config/config.component.ts</context>
<context context-type="linenumber">148</context>
</context-group>
<target state="needs-translation">Configuration updated</target>
<target state="translated">Configuratie bijgewerkt</target>
</trans-unit>
<trans-unit id="1664963291286452273" datatype="html">
<source>An error occurred updating configuration</source>
@@ -601,7 +601,7 @@
<context context-type="sourcefile">src/app/components/admin/config/config.component.ts</context>
<context context-type="linenumber">153</context>
</context-group>
<target state="needs-translation">An error occurred updating configuration</target>
<target state="translated">Fout opgetreden tijdens bijwerken configuratie</target>
</trans-unit>
<trans-unit id="4804785061014590286" datatype="html" approved="yes">
<source>Logs</source>
@@ -2466,7 +2466,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">1</context>
</context-group>
<target state="needs-translation">Workflows</target>
<target state="translated">Workflows</target>
</trans-unit>
<trans-unit id="1292737233370901804" datatype="html">
<source>Mail</source>
@@ -3266,7 +3266,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html</context>
<context context-type="linenumber">32</context>
</context-group>
<target state="translated">Deze toewijzingen zullen die van consumpiesjablonen vervangen.</target>
<target state="translated">Deze toewijzingen zullen die van verwerkingssjablonen vervangen.</target>
</trans-unit>
<trans-unit id="6093797930511670257" datatype="html">
<source>Assign title from</source>
@@ -3666,7 +3666,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">27</context>
</context-group>
<target state="needs-translation">Enabled</target>
<target state="translated">Ingeschakeld</target>
</trans-unit>
<trans-unit id="1586840222182376783" datatype="html">
<source>Triggers</source>
@@ -3678,7 +3678,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">17</context>
</context-group>
<target state="needs-translation">Triggers</target>
<target state="translated">Triggers</target>
</trans-unit>
<trans-unit id="2033923486957762916" datatype="html">
<source>Trigger Workflow On:</source>
@@ -3686,7 +3686,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">28</context>
</context-group>
<target state="needs-translation">Trigger Workflow On:</target>
<target state="translated">Trigger workflow wanneer:</target>
</trans-unit>
<trans-unit id="3901427285052969410" datatype="html">
<source>Add Trigger</source>
@@ -3694,7 +3694,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">33</context>
</context-group>
<target state="needs-translation">Add Trigger</target>
<target state="translated">Trigger toevoegen</target>
</trans-unit>
<trans-unit id="6882912390704300247" datatype="html">
<source>Apply Actions:</source>
@@ -3702,7 +3702,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">72</context>
</context-group>
<target state="needs-translation">Apply Actions:</target>
<target state="translated">Acties toepassen:</target>
</trans-unit>
<trans-unit id="51883444329775670" datatype="html">
<source>Add Action</source>
@@ -3710,7 +3710,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">77</context>
</context-group>
<target state="needs-translation">Add Action</target>
<target state="translated">Actie toevoegen</target>
</trans-unit>
<trans-unit id="6417103744331194518" datatype="html">
<source>Action type</source>
@@ -3718,7 +3718,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">98</context>
</context-group>
<target state="needs-translation">Action type</target>
<target state="translated">Actie type</target>
</trans-unit>
<trans-unit id="6019822389883736115" datatype="html">
<source>Assign title</source>
@@ -3734,7 +3734,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">102</context>
</context-group>
<target state="needs-translation">Can include some placeholders, see &lt;a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'&gt;documentation&lt;/a&gt;.</target>
<target state="translated">Kan gebruik maken van sommige placeholders, zie &lt;a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'&gt;documentatie&lt;/a&gt;.</target>
</trans-unit>
<trans-unit id="6528897010417701530" datatype="html">
<source>Assign tags</source>
@@ -3790,7 +3790,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">178</context>
</context-group>
<target state="needs-translation">Trigger type</target>
<target state="translated">Trigger type</target>
</trans-unit>
<trans-unit id="8727727835543352574" datatype="html">
<source>Trigger for documents that match <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;em&gt;"/>all<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> filters specified below.</source>
@@ -3798,7 +3798,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">179</context>
</context-group>
<target state="needs-translation">Trigger for documents that match <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;em&gt;"/>all<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> filters specified below.</target>
<target state="translated">Trigger voor documenten die overeenkomen met <x id="START_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;em&gt;"/>alle<x id="CLOSE_EMPHASISED_TEXT" ctype="x-em" equiv-text="&lt;/em&gt;"/> filters hieronder.</target>
</trans-unit>
<trans-unit id="7467799586957602479" datatype="html">
<source>Filter filename</source>
@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Filter op opslaglocatie</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Toepassen op documenten die overeenkomen met dit pad. Wildcards met * zijn toegestaan. Niet hoofdlettergevoelig.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3862,7 +3862,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">189</context>
</context-group>
<target state="needs-translation">Content matching algorithm</target>
<target state="translated">Inhoud matchingsalgoritme</target>
</trans-unit>
<trans-unit id="510635115034690805" datatype="html">
<source>Content matching pattern</source>
@@ -3870,7 +3870,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">191</context>
</context-group>
<target state="needs-translation">Content matching pattern</target>
<target state="translated">Inhoud matchen op patroon</target>
</trans-unit>
<trans-unit id="1333789258712064056" datatype="html">
<source>Has tags</source>
@@ -3878,7 +3878,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">200</context>
</context-group>
<target state="needs-translation">Has tags</target>
<target state="translated">Heeft labels</target>
</trans-unit>
<trans-unit id="5281365940563983618" datatype="html">
<source>Has correspondent</source>
@@ -3886,7 +3886,7 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">201</context>
</context-group>
<target state="needs-translation">Has correspondent</target>
<target state="translated">Heeft correspondent</target>
</trans-unit>
<trans-unit id="4806713133917046341" datatype="html">
<source>Has document type</source>
@@ -3894,13 +3894,13 @@
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">202</context>
</context-group>
<target state="needs-translation">Has document type</target>
<target state="translated">Heeft documenttype</target>
</trans-unit>
<trans-unit id="4626030417479279989" datatype="html">
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">Inname locatie</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">E-mail ophalen</target>
</trans-unit>
@@ -3924,49 +3924,49 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
<target state="translated">Verwerking gestart</target>
</trans-unit>
<trans-unit id="7858311467093621703" datatype="html">
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
<target state="translated">Document toegevoegd</target>
</trans-unit>
<trans-unit id="7955486237346046731" datatype="html">
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
<target state="translated">Document bijgewerkt</target>
</trans-unit>
<trans-unit id="5502398334173581061" datatype="html">
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
<target state="translated">Toewijzing</target>
</trans-unit>
<trans-unit id="3138206142174978019" datatype="html">
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
<target state="translated">Nieuwe workflow maken</target>
</trans-unit>
<trans-unit id="5996779210524133604" datatype="html">
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
<target state="translated">Workflow bewerken</target>
</trans-unit>
<trans-unit id="1616102757855967475" datatype="html" approved="yes">
<source>All</source>
@@ -6873,7 +6873,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">6</context>
</context-group>
<target state="needs-translation">Add Workflow</target>
<target state="translated">Workflow toevoegen</target>
</trans-unit>
<trans-unit id="5769292297914455214" datatype="html">
<source>Disabled</source>
@@ -6881,7 +6881,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">27</context>
</context-group>
<target state="needs-translation">Disabled</target>
<target state="translated">Uitgeschakeld</target>
</trans-unit>
<trans-unit id="1624023882313260402" datatype="html">
<source>No workflows defined.</source>
@@ -6889,7 +6889,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.html</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">No workflows defined.</target>
<target state="translated">Geen workflows gedefinieerd.</target>
</trans-unit>
<trans-unit id="4200688335642457098" datatype="html">
<source>Saved workflow &quot;<x id="PH" equiv-text="newWorkflow.name"/>&quot;.</source>
@@ -6897,7 +6897,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">79</context>
</context-group>
<target state="needs-translation">Saved workflow "<x id="PH" equiv-text="newWorkflow.name"/>".</target>
<target state="translated">Workflow "<x id="PH" equiv-text="newWorkflow.name"/>" opgeslagen.</target>
</trans-unit>
<trans-unit id="7593065565369163325" datatype="html">
<source>Error saving workflow.</source>
@@ -6905,7 +6905,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">87</context>
</context-group>
<target state="needs-translation">Error saving workflow.</target>
<target state="translated">Fout bij opslaan workflow.</target>
</trans-unit>
<trans-unit id="563460864902055482" datatype="html">
<source>Confirm delete workflow</source>
@@ -6913,7 +6913,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">95</context>
</context-group>
<target state="needs-translation">Confirm delete workflow</target>
<target state="translated">Bevestig workflow verwijderen</target>
</trans-unit>
<trans-unit id="6874008462443189248" datatype="html">
<source>This operation will permanently delete this workflow.</source>
@@ -6921,7 +6921,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">96</context>
</context-group>
<target state="needs-translation">This operation will permanently delete this workflow.</target>
<target state="translated">Deze bewerking zal deze workflow permanent verwijderen.</target>
</trans-unit>
<trans-unit id="1848226135059921165" datatype="html">
<source>Deleted workflow</source>
@@ -6929,7 +6929,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">105</context>
</context-group>
<target state="needs-translation">Deleted workflow</target>
<target state="translated">Workflow verwijderd</target>
</trans-unit>
<trans-unit id="3177411222429626224" datatype="html">
<source>Error deleting workflow.</source>
@@ -6937,7 +6937,7 @@
<context context-type="sourcefile">src/app/components/manage/workflows/workflows.component.ts</context>
<context context-type="linenumber">110</context>
</context-group>
<target state="needs-translation">Error deleting workflow.</target>
<target state="translated">Fout bij verwijderen workflow.</target>
</trans-unit>
<trans-unit id="2649252321173430744" datatype="html">
<source>Not Found</source>
@@ -7121,7 +7121,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">49</context>
</context-group>
<target state="needs-translation">OCR Settings</target>
<target state="translated">OCR-instellingen</target>
</trans-unit>
<trans-unit id="1313137480169642057" datatype="html">
<source>Output Type</source>
@@ -7129,7 +7129,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">73</context>
</context-group>
<target state="needs-translation">Output Type</target>
<target state="translated">Uitvoer bestandstype</target>
</trans-unit>
<trans-unit id="2826581353496868063" datatype="html">
<source>Language</source>
@@ -7137,7 +7137,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">81</context>
</context-group>
<target state="needs-translation">Language</target>
<target state="translated">Taal</target>
</trans-unit>
<trans-unit id="3817498941817715969" datatype="html">
<source>Pages</source>
@@ -7145,7 +7145,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">88</context>
</context-group>
<target state="needs-translation">Pages</target>
<target state="translated">Pagina's</target>
</trans-unit>
<trans-unit id="1713271461473302108" datatype="html">
<source>Mode</source>
@@ -7153,7 +7153,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">95</context>
</context-group>
<target state="needs-translation">Mode</target>
<target state="translated">Modus</target>
</trans-unit>
<trans-unit id="6114528299376689399" datatype="html">
<source>Skip Archive File</source>
@@ -7161,7 +7161,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">103</context>
</context-group>
<target state="needs-translation">Skip Archive File</target>
<target state="translated">Archiefbestand maken overslaan</target>
</trans-unit>
<trans-unit id="1115402553541327390" datatype="html">
<source>Image DPI</source>
@@ -7169,7 +7169,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">111</context>
</context-group>
<target state="needs-translation">Image DPI</target>
<target state="translated">Afbeelding DPI</target>
</trans-unit>
<trans-unit id="6352596107300820129" datatype="html">
<source>Clean</source>
@@ -7177,7 +7177,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">118</context>
</context-group>
<target state="needs-translation">Clean</target>
<target state="translated">Opschoon methode</target>
</trans-unit>
<trans-unit id="725308589819024010" datatype="html">
<source>Deskew</source>
@@ -7185,7 +7185,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">126</context>
</context-group>
<target state="needs-translation">Deskew</target>
<target state="translated">Rechtzetten</target>
</trans-unit>
<trans-unit id="6256076128297775802" datatype="html">
<source>Rotate Pages</source>
@@ -7193,7 +7193,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">133</context>
</context-group>
<target state="needs-translation">Rotate Pages</target>
<target state="translated">Pagina's draaien</target>
</trans-unit>
<trans-unit id="8527188778859256947" datatype="html">
<source>Rotate Pages Threshold</source>
@@ -7201,7 +7201,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">140</context>
</context-group>
<target state="needs-translation">Rotate Pages Threshold</target>
<target state="translated">Drempelwaarde pagina draaien</target>
</trans-unit>
<trans-unit id="3762131309176747817" datatype="html">
<source>Max Image Pixels</source>
@@ -7209,7 +7209,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">147</context>
</context-group>
<target state="needs-translation">Max Image Pixels</target>
<target state="translated">Limiet afbeeldingspixels</target>
</trans-unit>
<trans-unit id="7846583355792281769" datatype="html">
<source>Color Conversion Strategy</source>
@@ -7217,7 +7217,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">154</context>
</context-group>
<target state="needs-translation">Color Conversion Strategy</target>
<target state="translated">Methode kleuromzetting</target>
</trans-unit>
<trans-unit id="4696480417479207939" datatype="html">
<source>OCR Arguments</source>
@@ -7225,7 +7225,7 @@
<context context-type="sourcefile">src/app/data/paperless-config.ts</context>
<context context-type="linenumber">162</context>
</context-group>
<target state="needs-translation">OCR Arguments</target>
<target state="translated">OCR argumenten</target>
</trans-unit>
<trans-unit id="5948496158474272829" datatype="html">
<source>Warning: You have unsaved changes to your document(s).</source>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-review-translation" state-qualifier="leveraged-tm">Epost-henting</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Filtruj ścieżkę</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Zastosuj do dokumentów, które pasują do tej ścieżki. Maski takie jak * są dozwolone. Wielkość liter nie ma znaczenia.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">Folder pobierania</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">Przesyłanie przez API</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Pobieranie poczty</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="translated">Rozpoczęto pobieranie</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="translated">Dodano dokument</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="translated">Dokument zaktualizowano</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="translated">Przypisanie</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="translated">Utwórz nowy proces</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="translated">Edytuj proces</target>
</trans-unit>
@@ -6985,7 +6985,7 @@
<context context-type="sourcefile">src/app/data/custom-field.ts</context>
<context context-type="linenumber">29</context>
</context-group>
<target state="translated">Liczba</target>
<target state="translated">Liczba rzeczywista</target>
</trans-unit>
<trans-unit id="6430409302408843009" datatype="html">
<source>Monetary</source>

View File

@@ -3833,13 +3833,13 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
</context-group>
<target state="translated">Filtro de caminho</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Aplica-se a documentos que correspondem a esse caminho. Caracteres curinga usando * são permitidos. Sem diferenciação de maiúsculas e minúsculas.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3901,7 +3901,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">Pasta de Consumo</target>
</trans-unit>
@@ -3909,7 +3909,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">Envio por API</target>
</trans-unit>
@@ -3917,7 +3917,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Busca em e-mail</target>
</trans-unit>
@@ -3925,7 +3925,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3933,7 +3933,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3941,7 +3941,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3949,7 +3949,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3957,7 +3957,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3965,7 +3965,7 @@ Curingas como *.pdf ou *invoice* são permitidos. Sem diferenciação de maiúsc
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Filtrare cale</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">Загрузка API</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Получить почту</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Filtriraj pot</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Uporabi za dokumente, ki ustrezajo tej poti. Dovoljeni so nadomestni znaki, določeni kot *. Ni občutljivo na velikost črk.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">Zajemalna mapa</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">API prenos</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Pridobi e-pošto</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Filtriraj putanju</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Primeni na dokumente koji odgovaraju ovoj putanji. Džoker znakovi navedeni kao * su dozvoljeni. Neosetljivo na velika i mala slova.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="translated">Folder za obradu</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">API otpremanje</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Preuzimanje e-pošte</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Filtre Yolu</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">API yükle</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="translated">Posta Yükle</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">Lọc đường dẫn</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">Á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.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="translated">筛选路径</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="translated">应用于匹配此路径的文档。允许指定为*的通配符。不区分大小写。&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-review-translation" state-qualifier="leveraged-tm">消费文件夹</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="translated">Api上传</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-review-translation" state-qualifier="leveraged-tm">邮件获取</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -3832,13 +3832,13 @@
</context-group>
<target state="needs-translation">Filter path</target>
</trans-unit>
<trans-unit id="2900550647231873115" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</source>
<trans-unit id="5491897741674893121" datatype="html">
<source>Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html</context>
<context context-type="linenumber">185</context>
</context-group>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case insensitive.&lt;/a&gt;</target>
<target state="needs-translation">Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.&lt;/a&gt;</target>
</trans-unit>
<trans-unit id="7468453896129193641" datatype="html">
<source>Filter mail rule</source>
@@ -3900,7 +3900,7 @@
<source>Consume Folder</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">38</context>
<context context-type="linenumber">39</context>
</context-group>
<target state="needs-translation">Consume Folder</target>
</trans-unit>
@@ -3908,7 +3908,7 @@
<source>API Upload</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">42</context>
<context context-type="linenumber">43</context>
</context-group>
<target state="needs-translation">API Upload</target>
</trans-unit>
@@ -3916,7 +3916,7 @@
<source>Mail Fetch</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">46</context>
<context context-type="linenumber">47</context>
</context-group>
<target state="needs-translation">Mail Fetch</target>
</trans-unit>
@@ -3924,7 +3924,7 @@
<source>Consumption Started</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">53</context>
<context context-type="linenumber">54</context>
</context-group>
<target state="needs-translation">Consumption Started</target>
</trans-unit>
@@ -3932,7 +3932,7 @@
<source>Document Added</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">57</context>
<context context-type="linenumber">58</context>
</context-group>
<target state="needs-translation">Document Added</target>
</trans-unit>
@@ -3940,7 +3940,7 @@
<source>Document Updated</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">61</context>
<context context-type="linenumber">62</context>
</context-group>
<target state="needs-translation">Document Updated</target>
</trans-unit>
@@ -3948,7 +3948,7 @@
<source>Assignment</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">68</context>
<context context-type="linenumber">69</context>
</context-group>
<target state="needs-translation">Assignment</target>
</trans-unit>
@@ -3956,7 +3956,7 @@
<source>Create new workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">136</context>
<context context-type="linenumber">137</context>
</context-group>
<target state="needs-translation">Create new workflow</target>
</trans-unit>
@@ -3964,7 +3964,7 @@
<source>Edit workflow</source>
<context-group purpose="location">
<context context-type="sourcefile">src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts</context>
<context context-type="linenumber">140</context>
<context context-type="linenumber">141</context>
</context-group>
<target state="needs-translation">Edit workflow</target>
</trans-unit>

View File

@@ -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 (
@@ -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()

View File

@@ -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,

View File

@@ -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"

View File

@@ -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)"

View File

@@ -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)"

View File

@@ -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"

View File

@@ -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"

View File

@@ -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"

View File

@@ -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__"

View File

@@ -1,6 +1,6 @@
from typing import Final
__version__: Final[tuple[int, int, int]] = (2, 3, 0)
__version__: Final[tuple[int, int, int]] = (2, 3, 2)
# Version string like X.Y.Z
__full_version_str__: Final[str] = ".".join(map(str, __version__))
# Version string like X.Y

View File

@@ -238,7 +238,7 @@ class RasterisedDocumentParser(DocumentParser):
ocrmypdf_args["rotate_pages"] = True
ocrmypdf_args["rotate_pages_threshold"] = self.settings.rotate_threshold
if self.settings.pages is not None:
if self.settings.pages is not None and self.settings.pages > 0:
ocrmypdf_args["pages"] = f"1-{self.settings.pages}"
else:
# sidecar is incompatible with pages