diff --git a/docs/changelog.md b/docs/changelog.md index 4c80c2ea3..296d30f7a 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,63 @@ # Changelog +## paperless-ngx 2.19.3 + +### Bug Fixes + +- Fix: remove unnecessary permission requirements for new email endpoint [@shamoon](https://github.com/shamoon) ([#11215](https://github.com/paperless-ngx/paperless-ngx/pull/11215)) +- Fix: refactor nested sorting in filterable dropdowns [@shamoon](https://github.com/shamoon) ([#11214](https://github.com/paperless-ngx/paperless-ngx/pull/11214)) +- Fix: add root tag filtering for tag list page consistency, fix toggle all [@shamoon](https://github.com/shamoon) ([#11208](https://github.com/paperless-ngx/paperless-ngx/pull/11208)) +- Fix: support ConsumableDocument in email attachments [@shamoon](https://github.com/shamoon) ([#11196](https://github.com/paperless-ngx/paperless-ngx/pull/11196)) +- Fix: add missing import for ConfirmButtonComponent in user-edit-dialog [@shamoon](https://github.com/shamoon) ([#11167](https://github.com/paperless-ngx/paperless-ngx/pull/11167)) +- Fix: resolve migration warning in 2.19.2 [@shamoon](https://github.com/shamoon) ([#11157](https://github.com/paperless-ngx/paperless-ngx/pull/11157)) + +### Changes + +- Change: make workflow action only title draggable [@shamoon](https://github.com/shamoon) ([#11209](https://github.com/paperless-ngx/paperless-ngx/pull/11209)) +- Change: change workflowrun to softdeletemodel [@shamoon](https://github.com/shamoon) ([#11194](https://github.com/paperless-ngx/paperless-ngx/pull/11194)) + +### Dependencies + +- Chore(deps): Bump django from 5.2.6 to 5.2.7 @[dependabot[bot]](https://github.com/apps/dependabot) ([#11200](https://github.com/paperless-ngx/paperless-ngx/pull/11200)) + +### All App Changes + + +9 changes + +- Chore(deps): Bump django from 5.2.6 to 5.2.7 @[dependabot[bot]](https://github.com/apps/dependabot) ([#11200](https://github.com/paperless-ngx/paperless-ngx/pull/11200)) +- Fix: remove unnecessary permission requirements for new email endpoint [@shamoon](https://github.com/shamoon) ([#11215](https://github.com/paperless-ngx/paperless-ngx/pull/11215)) +- Fix: refactor nested sorting in filterable dropdowns [@shamoon](https://github.com/shamoon) ([#11214](https://github.com/paperless-ngx/paperless-ngx/pull/11214)) +- Fix: add root tag filtering for tag list page consistency, fix toggle all [@shamoon](https://github.com/shamoon) ([#11208](https://github.com/paperless-ngx/paperless-ngx/pull/11208)) +- Change: make workflow action only title draggable [@shamoon](https://github.com/shamoon) ([#11209](https://github.com/paperless-ngx/paperless-ngx/pull/11209)) +- Change: change workflowrun to softdeletemodel [@shamoon](https://github.com/shamoon) ([#11194](https://github.com/paperless-ngx/paperless-ngx/pull/11194)) +- Chore: Minor migration optimization for workflow titles [@stumpylog](https://github.com/stumpylog) ([#11197](https://github.com/paperless-ngx/paperless-ngx/pull/11197)) +- Fix: support ConsumableDocument in email attachments [@shamoon](https://github.com/shamoon) ([#11196](https://github.com/paperless-ngx/paperless-ngx/pull/11196)) +- Fix: add missing import for ConfirmButtonComponent in user-edit-dialog [@shamoon](https://github.com/shamoon) ([#11167](https://github.com/paperless-ngx/paperless-ngx/pull/11167)) +- Fix: resolve migration warning in 2.19.2 [@shamoon](https://github.com/shamoon) ([#11157](https://github.com/paperless-ngx/paperless-ngx/pull/11157)) + + +## paperless-ngx 2.19.2 + +### Features / Enhancements + +- Fixhancement: display loading status for tags instead of 'Private' [@shamoon](https://github.com/shamoon) ([#11140](https://github.com/paperless-ngx/paperless-ngx/pull/11140)) + +### Bug Fixes + +- Fix: Remove edit requirement for bulk email, show based on setting [@shamoon](https://github.com/shamoon) ([#11149](https://github.com/paperless-ngx/paperless-ngx/pull/11149)) +- Fix: handle undefined IDs in getOriginalObject [@shamoon](https://github.com/shamoon) ([#11147](https://github.com/paperless-ngx/paperless-ngx/pull/11147)) + +### All App Changes + + +3 changes + +- Fix: Remove edit requirement for bulk email, show based on setting [@shamoon](https://github.com/shamoon) ([#11149](https://github.com/paperless-ngx/paperless-ngx/pull/11149)) +- Fix: handle undefined IDs in getOriginalObject [@shamoon](https://github.com/shamoon) ([#11147](https://github.com/paperless-ngx/paperless-ngx/pull/11147)) +- Fixhancement: display loading status for tags instead of 'Private' [@shamoon](https://github.com/shamoon) ([#11140](https://github.com/paperless-ngx/paperless-ngx/pull/11140)) + + ## paperless-ngx 2.19.1 ### Bug Fixes diff --git a/install-paperless-ngx.sh b/install-paperless-ngx.sh index 648196030..053260879 100755 --- a/install-paperless-ngx.sh +++ b/install-paperless-ngx.sh @@ -374,7 +374,7 @@ fi # of the provided folder if [[ -n $DATABASE_FOLDER ]] ; then if [[ "$DATABASE_BACKEND" == "postgres" ]] ; then - sed -i "s#- pgdata:/var/lib/postgresql/data#- $DATABASE_FOLDER:/var/lib/postgresql/data#g" docker-compose.yml + sed -i "s#- pgdata:/var/lib/postgresql#- $DATABASE_FOLDER:/var/lib/postgresql#g" docker-compose.yml sed -i "/^\s*pgdata:/d" docker-compose.yml elif [[ "$DATABASE_BACKEND" == "mariadb" ]]; then sed -i "s#- dbdata:/var/lib/mysql#- $DATABASE_FOLDER:/var/lib/mysql#g" docker-compose.yml diff --git a/pyproject.toml b/pyproject.toml index 6a407fe0b..f7d1d7afc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "paperless-ngx" -version = "2.19.2" +version = "2.19.3" description = "A community-supported supercharged document management system: scan, index and archive all your physical documents" readme = "README.md" requires-python = ">=3.10" diff --git a/src-ui/messages.xlf b/src-ui/messages.xlf index f466c2c09..cf79d162f 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -585,7 +585,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1299,19 +1299,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1334,19 +1334,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1372,11 +1372,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1484,7 +1484,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2107,11 +2107,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2241,7 +2241,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 @@ -2283,7 +2283,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2610,7 +2610,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3669,7 +3669,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 @@ -4086,7 +4086,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 @@ -4104,7 +4104,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 @@ -4115,7 +4115,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4621,409 +4621,409 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 @@ -5338,7 +5338,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned @@ -5346,7 +5346,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 @@ -8843,7 +8843,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 @@ -9014,28 +9014,28 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 diff --git a/src-ui/package.json b/src-ui/package.json index d105d3188..e75aa3a24 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -1,6 +1,6 @@ { "name": "paperless-ngx-ui", - "version": "2.19.2", + "version": "2.19.3", "scripts": { "preinstall": "npx only-allow pnpm", "ng": "ng", diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html index 61daa1fa2..fab644baa 100644 --- a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html +++ b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html @@ -77,9 +77,11 @@ @for (action of object?.actions; track action; let i = $index){ - - - {{i + 1}}. {{getActionTypeOptionName(actionFields.controls[i].value.type)}} + + + + + {{i + 1}}. {{getActionTypeOptionName(actionFields.controls[i].value.type)}} @if(action.id) { ID: {{action.id}} } diff --git a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.scss b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.scss index d026a5b2b..56aea809f 100644 --- a/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.scss +++ b/src-ui/src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.scss @@ -11,3 +11,7 @@ :host ::ng-deep .filters .paperless-input-select.mb-3 { margin-bottom: 0 !important; } + +.ms-n3 { + margin-left: -1rem !important; +} diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts index 06bc18b0c..5b643dc9f 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.spec.ts @@ -564,6 +564,167 @@ describe('FilterableDropdownComponent & FilterableDropdownSelectionModel', () => ]) }) + it('keeps children with their parent when parent has document count', () => { + const parent: Tag = { + id: 10, + name: 'Parent Tag', + orderIndex: 0, + document_count: 2, + } + const child: Tag = { + id: 11, + name: 'Child Tag', + parent: parent.id, + orderIndex: 1, + document_count: 0, + } + const otherRoot: Tag = { + id: 20, + name: 'Other Tag', + orderIndex: 2, + document_count: 0, + } + + component.selectionModel.items = [parent, child, otherRoot] + component.selectionModel = selectionModel + component.documentCounts = [ + { id: parent.id, document_count: 2 }, + { id: otherRoot.id, document_count: 0 }, + ] + selectionModel.apply() + + expect(component.selectionModel.items).toEqual([ + nullItem, + parent, + child, + otherRoot, + ]) + }) + + it('keeps selected branches ahead of document-based ordering', () => { + const selectedRoot: Tag = { + id: 30, + name: 'Selected Root', + orderIndex: 0, + document_count: 0, + } + const otherRoot: Tag = { + id: 40, + name: 'Other Root', + orderIndex: 1, + document_count: 2, + } + + component.selectionModel.items = [selectedRoot, otherRoot] + component.selectionModel = selectionModel + selectionModel.set(selectedRoot.id, ToggleableItemState.Selected) + component.documentCounts = [ + { id: selectedRoot.id, document_count: 0 }, + { id: otherRoot.id, document_count: 2 }, + ] + selectionModel.apply() + + expect(component.selectionModel.items).toEqual([ + nullItem, + selectedRoot, + otherRoot, + ]) + }) + + it('uses fallback document counts when selection data is missing', () => { + const fallbackRoot: Tag = { + id: 50, + name: 'Fallback Root', + orderIndex: 0, + document_count: 3, + } + const fallbackChild: Tag = { + id: 51, + name: 'Fallback Child', + parent: fallbackRoot.id, + orderIndex: 1, + document_count: 0, + } + const otherRoot: Tag = { + id: 60, + name: 'Other Root', + orderIndex: 2, + document_count: 0, + } + + component.selectionModel = selectionModel + selectionModel.items = [fallbackRoot, fallbackChild, otherRoot] + component.documentCounts = [{ id: otherRoot.id, document_count: 0 }] + + selectionModel.apply() + + expect(selectionModel.items).toEqual([ + nullItem, + fallbackRoot, + fallbackChild, + otherRoot, + ]) + }) + + it('handles special and non-numeric ids when promoting branches', () => { + const rootWithDocs: Tag = { + id: 70, + name: 'Root With Docs', + orderIndex: 0, + document_count: 1, + } + const miscItem: any = { id: 'misc', name: 'Misc Item' } + + component.selectionModel = selectionModel + selectionModel.intersection = Intersection.Exclude + selectionModel.items = [rootWithDocs, miscItem as any] + component.documentCounts = [{ id: rootWithDocs.id, document_count: 1 }] + + selectionModel.apply() + + expect(selectionModel.items.map((item) => item.id)).toEqual([ + NEGATIVE_NULL_FILTER_VALUE, + rootWithDocs.id, + 'misc', + ]) + }) + + it('memoizes root document counts between lookups', () => { + const memoRoot: Tag = { id: 80, name: 'Memo Root' } + selectionModel.items = [memoRoot] + selectionModel.documentCounts = [{ id: memoRoot.id, document_count: 9 }] + + const getRootDocCount = (selectionModel as any).createRootDocCounter() + + expect(getRootDocCount(memoRoot.id)).toEqual(9) + selectionModel.documentCounts = [] + expect(getRootDocCount(memoRoot.id)).toEqual(9) + }) + + it('falls back to model stored document counts if selection data missing entry', () => { + const rootWithoutSelection: Tag = { + id: 90, + name: 'Fallback Root', + document_count: 4, + } + selectionModel.items = [rootWithoutSelection] + selectionModel.documentCounts = [] + + const getRootDocCount = (selectionModel as any).createRootDocCounter() + + expect(getRootDocCount(rootWithoutSelection.id)).toEqual(4) + }) + + it('defaults to zero document count when neither selection nor model provide it', () => { + const rootWithoutCounts: Tag = { id: 91, name: 'Fallback Zero Root' } + selectionModel.items = [rootWithoutCounts] + selectionModel.documentCounts = [] + + const getRootDocCount = (selectionModel as any).createRootDocCounter() + + expect(getRootDocCount(rootWithoutCounts.id)).toEqual(0) + }) + it('should set support create, keep open model and call createRef method', fakeAsync(() => { component.selectionModel.items = items component.icon = 'tag-fill' diff --git a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts index 3ca6edc5c..1e15930d1 100644 --- a/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts +++ b/src-ui/src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts @@ -32,6 +32,14 @@ export interface ChangedItems { itemsToRemove: MatchingModel[] } +type BranchSummary = { + items: MatchingModel[] + firstIndex: number + special: boolean + selected: boolean + hasDocs: boolean +} + export enum LogicalOperator { And = 'and', Or = 'or', @@ -114,6 +122,13 @@ export class FilterableDropdownSelectionModel { b.id == NEGATIVE_NULL_FILTER_VALUE) ) { return 1 + } + + // Preserve hierarchical order when provided (e.g., Tags) + const ao = (a as any)['orderIndex'] + const bo = (b as any)['orderIndex'] + if (ao !== undefined && bo !== undefined) { + return ao - bo } else if ( this.getNonTemporary(a.id) == ToggleableItemState.NotSelected && this.getNonTemporary(b.id) != ToggleableItemState.NotSelected @@ -136,17 +151,14 @@ export class FilterableDropdownSelectionModel { this.getDocumentCount(a.id) < this.getDocumentCount(b.id) ) { return 1 - } - - // Preserve hierarchical order when provided (e.g., Tags) - const ao = (a as any)['orderIndex'] - const bo = (b as any)['orderIndex'] - if (ao !== undefined && bo !== undefined) { - return ao - bo } else { return a.name.localeCompare(b.name) } }) + + if (this._documentCounts.length) { + this.promoteBranchesWithDocumentCounts() + } } private selectionStates = new Map() @@ -380,6 +392,180 @@ export class FilterableDropdownSelectionModel { return this._documentCounts.find((c) => c.id === id)?.document_count } + private promoteBranchesWithDocumentCounts() { + const parentById = this.buildParentById() + const findRootId = this.createRootFinder(parentById) + const getRootDocCount = this.createRootDocCounter() + const summaries = this.buildBranchSummaries(findRootId, getRootDocCount) + const orderedBranches = this.orderBranchesByPriority(summaries) + + this._items = orderedBranches.flatMap((summary) => summary.items) + } + + private buildParentById(): Map { + const parentById = new Map() + + for (const item of this._items) { + if (typeof item?.id === 'number') { + const parentValue = (item as any)['parent'] + parentById.set( + item.id, + typeof parentValue === 'number' ? parentValue : null + ) + } + } + + return parentById + } + + private createRootFinder( + parentById: Map + ): (id: number) => number { + const rootMemo = new Map() + + const findRootId = (id: number): number => { + const cached = rootMemo.get(id) + if (cached !== undefined) { + return cached + } + + const parentId = parentById.get(id) + if (parentId === undefined || parentId === null) { + rootMemo.set(id, id) + return id + } + + const rootId = findRootId(parentId) + rootMemo.set(id, rootId) + return rootId + } + + return findRootId + } + + private createRootDocCounter(): (rootId: number) => number { + const docCountMemo = new Map() + + return (rootId: number): number => { + const cached = docCountMemo.get(rootId) + if (cached !== undefined) { + return cached + } + + const explicit = this.getDocumentCount(rootId) + if (typeof explicit === 'number') { + docCountMemo.set(rootId, explicit) + return explicit + } + + const rootItem = this._items.find((i) => i.id === rootId) + const fallback = + typeof (rootItem as any)?.['document_count'] === 'number' + ? (rootItem as any)['document_count'] + : 0 + + docCountMemo.set(rootId, fallback) + return fallback + } + } + + private buildBranchSummaries( + findRootId: (id: number) => number, + getRootDocCount: (rootId: number) => number + ): Map { + const summaries = new Map() + + for (const [index, item] of this._items.entries()) { + const { key, special, rootId } = this.describeBranchItem( + item, + index, + findRootId + ) + + let summary = summaries.get(key) + if (!summary) { + summary = { + items: [], + firstIndex: index, + special, + selected: false, + hasDocs: + special || rootId === null ? false : getRootDocCount(rootId) > 0, + } + summaries.set(key, summary) + } + + summary.items.push(item) + + if (this.shouldMarkSummarySelected(summary, item)) { + summary.selected = true + } + } + + return summaries + } + + private describeBranchItem( + item: MatchingModel, + index: number, + findRootId: (id: number) => number + ): { key: string; special: boolean; rootId: number | null } { + if (item?.id === null) { + return { key: 'null', special: true, rootId: null } + } + + if (item?.id === NEGATIVE_NULL_FILTER_VALUE) { + return { key: 'neg-null', special: true, rootId: null } + } + + if (typeof item?.id === 'number') { + const rootId = findRootId(item.id) + return { key: `root-${rootId}`, special: false, rootId } + } + + return { key: `misc-${index}`, special: false, rootId: null } + } + + private shouldMarkSummarySelected( + summary: BranchSummary, + item: MatchingModel + ): boolean { + if (summary.special) { + return false + } + + if (typeof item?.id !== 'number') { + return false + } + + return this.getNonTemporary(item.id) !== ToggleableItemState.NotSelected + } + + private orderBranchesByPriority( + summaries: Map + ): BranchSummary[] { + return Array.from(summaries.values()).sort((a, b) => { + const rankDiff = this.branchRank(a) - this.branchRank(b) + if (rankDiff !== 0) { + return rankDiff + } + if (a.hasDocs !== b.hasDocs) { + return a.hasDocs ? -1 : 1 + } + return a.firstIndex - b.firstIndex + }) + } + + private branchRank(summary: BranchSummary): number { + if (summary.special) { + return -1 + } + if (summary.selected) { + return 0 + } + return 1 + } + init(map: Map) { this.temporarySelectionStates = map this.apply() diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts b/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts index 95927849a..9c64f5730 100644 --- a/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts +++ b/src-ui/src/app/components/manage/management-list/management-list.component.spec.ts @@ -361,4 +361,11 @@ describe('ManagementListComponent', () => { const original = component.getOriginalObject({ id: 4 } as Tag) expect(original).toEqual(childTag) }) + + it('getSelectableIDs should return flat ids when not overridden', () => { + const ids = ( + ManagementListComponent.prototype as any + ).getSelectableIDs.call({}, [{ id: 1 }, { id: 5 }] as any) + expect(ids).toEqual([1, 5]) + }) }) diff --git a/src-ui/src/app/components/manage/management-list/management-list.component.ts b/src-ui/src/app/components/manage/management-list/management-list.component.ts index 60c524c28..7cc3eaf4b 100644 --- a/src-ui/src/app/components/manage/management-list/management-list.component.ts +++ b/src-ui/src/app/components/manage/management-list/management-list.component.ts @@ -297,13 +297,19 @@ export abstract class ManagementListComponent } toggleAll(event: PointerEvent) { - if ((event.target as HTMLInputElement).checked) { - this.selectedObjects = new Set(this.data.map((o) => o.id)) + const checked = (event.target as HTMLInputElement).checked + this.togggleAll = checked + if (checked) { + this.selectedObjects = new Set(this.getSelectableIDs(this.data)) } else { this.clearSelection() } } + protected getSelectableIDs(objects: T[]): number[] { + return objects.map((o) => o.id) + } + clearSelection() { this.togggleAll = false this.selectedObjects.clear() diff --git a/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts b/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts index b4694e145..91cf09264 100644 --- a/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts +++ b/src-ui/src/app/components/manage/tag-list/tag-list.component.spec.ts @@ -17,6 +17,7 @@ describe('TagListComponent', () => { let component: TagListComponent let fixture: ComponentFixture let tagService: TagService + let listFilteredSpy: jest.SpyInstance beforeEach(async () => { TestBed.configureTestingModule({ @@ -39,7 +40,7 @@ describe('TagListComponent', () => { }).compileComponents() tagService = TestBed.inject(TagService) - jest.spyOn(tagService, 'listFiltered').mockReturnValue( + listFilteredSpy = jest.spyOn(tagService, 'listFiltered').mockReturnValue( of({ count: 3, all: [1, 2, 3], @@ -87,4 +88,57 @@ describe('TagListComponent', () => { const filteredWithName = component.filterData(tags as any) expect(filteredWithName.length).toBe(3) }) + + it('should request only parent tags when no name filter is applied', () => { + expect(tagService.listFiltered).toHaveBeenCalledWith( + 1, + null, + undefined, + undefined, + undefined, + true, + { is_root: true } + ) + }) + + it('should include child tags when a name filter is applied', () => { + listFilteredSpy.mockClear() + component['_nameFilter'] = 'Tag' + component.reloadData() + expect(tagService.listFiltered).toHaveBeenCalledWith( + 1, + null, + undefined, + undefined, + 'Tag', + true, + null + ) + }) + + it('should include child tags when selecting all', () => { + const parent = { + id: 10, + name: 'Parent', + children: [ + { + id: 11, + name: 'Child', + }, + ], + } + + component.data = [parent as any] + const selectEvent = { target: { checked: true } } as unknown as PointerEvent + component.toggleAll(selectEvent) + + expect(component.selectedObjects.has(10)).toBe(true) + expect(component.selectedObjects.has(11)).toBe(true) + + const deselectEvent = { + target: { checked: false }, + } as unknown as PointerEvent + component.toggleAll(deselectEvent) + expect(component.selectedObjects.size).toBe(0) + }) }) diff --git a/src-ui/src/app/components/manage/tag-list/tag-list.component.ts b/src-ui/src/app/components/manage/tag-list/tag-list.component.ts index 77d42e020..bf5ad1b50 100644 --- a/src-ui/src/app/components/manage/tag-list/tag-list.component.ts +++ b/src-ui/src/app/components/manage/tag-list/tag-list.component.ts @@ -61,9 +61,29 @@ export class TagListComponent extends ManagementListComponent { return $localize`Do you really want to delete the tag "${object.name}"?` } + override reloadData(extraParams: { [key: string]: any } = null) { + const params = this.nameFilter?.length + ? extraParams + : { ...extraParams, is_root: true } + super.reloadData(params) + } + filterData(data: Tag[]) { return this.nameFilter?.length ? [...data] : data.filter((tag) => !tag.parent) } + + protected override getSelectableIDs(tags: Tag[]): number[] { + const ids: number[] = [] + for (const tag of tags.filter(Boolean)) { + if (tag.id != null) { + ids.push(tag.id) + } + if (Array.isArray(tag.children) && tag.children.length) { + ids.push(...this.getSelectableIDs(tag.children)) + } + } + return ids + } } diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 914c41663..251fe1899 100644 --- a/src-ui/src/environments/environment.prod.ts +++ b/src-ui/src/environments/environment.prod.ts @@ -6,7 +6,7 @@ export const environment = { apiVersion: '9', // match src/paperless/settings.py appTitle: 'Paperless-ngx', tag: 'prod', - version: '2.19.2', + version: '2.19.3', webSocketHost: window.location.host, webSocketProtocol: window.location.protocol == 'https:' ? 'wss:' : 'ws:', webSocketBaseUrl: base_url.pathname + 'ws/', diff --git a/src-ui/src/locale/messages.af_ZA.xlf b/src-ui/src/locale/messages.af_ZA.xlf index ef8a374d8..959eb0f61 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Bevestig skrap @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Hoofletterongevoelig @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Ken dokumenttipe toe @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Ken korrespondent toe @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Skep nuwe gebruikersrekening @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Wysig gebruikersrekening @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nie toegewys nie @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.ar_AR.xlf b/src-ui/src/locale/messages.ar_AR.xlf index 1ec286b67..fdf4487ef 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 تأكيد الحذف @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 حالة غير حساسة @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 تعيين نوع المستند @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 تعيين جهة تراسل @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 إنشاء حساب مستخدم جديد @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 تعديل حساب المستخدم @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 نوع المشغل @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 مشغل للمستندات التي تطابق جميع عوامل التصفية المحددة أدناه. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 تصفية اسم المِلَفّ @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 تطبق فقط على المستندات التي تطابق اسم هذا المِلَفّ. المحارف البديلة على سبيل المثال *.pdf أو *invoice* مسموح بها. غير حساسة لحالة الأحرف. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 تصفية المصادر @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 تصفية المسار @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 تنطبق على المستندات التي تطابق هذا المسار. يسمح باستخدام أحرف البدل المحددة كـ *. تطبيع الحالة.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 تصفية قاعدة البريد @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 تطبيق على المستندات المستهلكة عبر هذه القاعدة البريدية. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 خوارزمية مطابقة المحتوى @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 نمط مطابقة المحتوى @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 نوع الإجراء @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 تعيين العنوان @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 يمكن أن تتضمن بعض العناصر النائبة، راجع <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>التوثيق</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 تعيين وسوم @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 تعيين مسار التخزين @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 تعيين حقول مخصصة @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 تعيين مالك @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 تعيين صلاحيات العرض @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 تعيين صلاحيات التحرير @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 إزالة الوسوم @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 أزاله الكل @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 إزالة جهات التراسل @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 إزالة أنواع المستندات @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 إزالة مسارات التخزين @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 إزالة الحقول المخصصة @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 إزالة المُلًاك @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 إزالة الصلاحيات @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 عرض الصلاحيات @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 تحرير الصلاحيات @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned غير معين @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 فتح المرشح @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 خطأ أثناء تحديث الصلاحيات @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 تم تحديث الصلاحيات بنجاح @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 ستؤدي هذه العملية إلى حذف جميع الكائنات نهائيا. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 تمّ حذف الكائنات بنجاحٍ @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 خطأ أثناء حذف الكائنات diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index de1dd0a86..c103f2949 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Пацвердзіце выдаленне @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Без уліку рэгістра @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Create new user account @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Edit user account @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Не прызначана @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.bg_BG.xlf b/src-ui/src/locale/messages.bg_BG.xlf index ef2d37a63..77f09d130 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Потвърдете изтриването @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Без чувствителност към големината на буквите @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Задаване на тип на документ @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Задаване на кореспондент @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Създаване на нов потребителски профил @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Промяна на потребителски профил @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp е деактивиран @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Грешка при деактивиране на Totp @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Тип на тригъра @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Задайте планирано отместване на тригера и кое поле за дата да използвате. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Дата на отместване @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Спрямо @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Персонализирано поле @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Персонализирано поле за използване за дата. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Повтарящи се @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Тригерът се повтаря. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Повтарящи се интервални дни @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Повторете задействането на всеки n дни. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Тригер за съвпадащи документи all филтри, посочени по-долу. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Филтриране по файлово име @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Прилага се към документи, които отговарят на това файлово име. Позволени са заместващи символи като *.pdf или *invoice*. Нечувствителен към големи и малки букви. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Филтриране на източници @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Филтриране на път @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Прилагане към документи, които съответстват на този път. Разрешени са заместващи символи, посочени като *. Нормализирани по случай.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Правило за филтриране на поща @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Прилагане за документи, консумирани чрез това правило за поща. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Алгоритъм за съвпадение на съдържанието @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Модел за съвпадение на съдържанието @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Тип на действие @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Задаване на заглавие @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Може да включи някои контейнери, вижте <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>документация</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Задаване на етикет @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Задаване нa път за съхранение @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Присвояване на персонализирани полета @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Задаване на собственик @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Задаване на права за разглеждане @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Задаване на права за промяна @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Премахни тагове @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Премахни всички @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Премахни кореспонденти @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Премахни типове документи @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Премахнете пътищата за съхранение @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Премахнете персонализираните полета @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Премахни собственици @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Премахване на права @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Права за преглед @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Редакция на права @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Имейл тема @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Имейл съобщение @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Получатели на имейл @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Прикачете документ @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Url адрес на известяване @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Избери параметри за известяване със съобщение @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Изпратете известяване като JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Известяване параметри @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Известяване съобщение @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Заглавия за известяване @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Добави документа @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Не е зададен @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Отвори филтър @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Грешка при актуализиране на правата @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Правата са актуализирани успешно @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Тази операция ще изтрие завинаги всички обекти. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Обектите са успешно изтрити @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Грешки при изтриване на обектите diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index 4e697795a..c66d62491 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Confirma eliminació @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 No distingeix majúscules - minúscules @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assigna tipus document @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assigna corresponsal @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Crea nou compte usuari @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Editar compte usuari @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp desactivat @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Desactivació de Totp fallit @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Tipus disparador @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Estableix el desplaçament de l'activador programat i quin camp de data s'utilitza. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Dies de compensació @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Els valors positius s'activaran després de la data, els valors negatius abans. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relatiu a @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Camp personalitzat @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Camp personalitzat per emprar data. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurrent @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Disparador és recurrent. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Dies d'interval recurrent @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeteix disparador cada n dies. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Disparadors per documents coincidents amb all filtres especificats a continuació. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtra nom arxiu @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Aplica als documents que coincideixen amb aquest nom de fitxer. Es permeten els comodins com ara *.pdf o *factura*. Cas insensible. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtra orígens @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtra ruta @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filtra regla de correu @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Aplica a documents consumits amb aquesta regla de correu. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Algorisme concordança contingut @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Algorisme concordança patró @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Filtresavançats @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Afegeix filtre @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No s'han definit filtres avançats de flux de treball. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Completeu la configuració de la consulta de camp personalitzat. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tipus acció @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assigna títol @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Pot incloure marcadors, vegeu <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentació</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assigna etiquetes @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assigna ruta emmagatzematge @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assigna camps personalitzats @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assigna propietari @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assigna permisos de visionat @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assigna permisos d'edició @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Elimina etiquetes @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Eliminar tot @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Elimina corresponsals @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Elimina tipus de documents @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Elimina rutes d'emmagatzematge @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Elimina camps personalitzats @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Elimina propietaris @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Elimina permisos @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Veure permisos @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edita permisos @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Assumpte de l'Email @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Cos de l'Email @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Destinataris del mail @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Adjuntar document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Empra paràmetres pel cos del webhook @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Enviar webhook com a JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Paràmetres del webhook @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Cos del Webhook @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Capçaleres del Webhook @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Incloure documents @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned No assignat @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Obrir filtre @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error actualitzant permisos @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permisos actualitzats correctament @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Aquesta operació esborrarà tots els objectes. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objecte esborrat correctament @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error esborrant objectes diff --git a/src-ui/src/locale/messages.cs_CZ.xlf b/src-ui/src/locale/messages.cs_CZ.xlf index c7d20b7d6..a634ca5da 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2124,7 +2124,7 @@ src/app/components/admin/tasks/tasks.component.ts 161 - Error dismissing tasks + Chyba při odstraňování úkolů Error dismissing task @@ -2132,7 +2132,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Chyba při odstraňování úkolu queued @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Potvrdit smazání @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Nerozlišovat velikost písmen @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Přiřadit typ dokumentu @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Přiřadit korespondenta @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Vytvořit nový uživatelský účet @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Upravit uživatelský účet @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP deaktivováno @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Deaktivace TOTP selhala @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Typ spouštěče @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Nastavit posun naplánovaného spouštěče a použité pole data. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Posun ve dnech @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Kladné hodnoty spustí plán po vybraném datu, záporné před. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Ve vztahu k @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Vlastní pole @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Vlastní pole použité pro datum. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Opakující se @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Spouštěč se opakuje. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Interval opakování ve dnech @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Opakovat spouštěč kadých n dní. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Spouštěč pro dokumenty, které odpovídají všem níže zadaným filtrům. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtr názvu souboru @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Použít na dokumenty odpovídající tomuto názvu souboru. Zástupné symboly, jako *.pdf nebo *faktura*, jsou povoleny. Nerozlišuje velká a malá písmena. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtr zdrojů @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtr cesty @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Použít na dokumenty odpovídající této cestě. Zástupné symboly zadané jako * jsou povoleny. Velká a malá písmena jsou normalizována.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Pravidlo filtrování pošty @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Použít na dokumenty zpracované pomocí tohoto pravidla pošty. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Algoritmus shody obsahu @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Vzor shody obsahu @@ -5214,39 +5214,39 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 - Advanced Filters + Pokročilé filtry Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 - Add filter + Přidat filtr No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 - No advanced workflow filters defined. + Nebyly definovány žádné pokročilé filtry pracovního postupu. Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 - Complete the custom field query configuration. + Dokončete konfiguraci dotazu na vlastní pole. Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Typ akce @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Přiřadit název @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Může zahrnovat některé zástupné symboly, viz <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentace</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Přiřadit štítky @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Přiřadit cestu k úložišti @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Přiřadit vlastní pole @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Přiřadit vlastníka @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Přiřadit oprávnění k zobrazení @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Přiřadit oprávnění k úpravě @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Odstranit štítky @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Odstranit vše @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Odstranit korespondenty @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Odstranit typy dokumentů @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Odstranit cesty k úložišti @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Odstranit vlastní pole @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Odstranit vlastníky @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Odstranit oprávnění @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Oprávnění k zobrazení @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Oprávnění k úpravě @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Předmět e-mailu @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Tělo e-mailu @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Příjemci e-mailu @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Přiložit dokument @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL webhooku @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Použít parametry pro tělo webhooku @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Odeslat data webhooku jako JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parametry webhooku @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Tělo webhooku @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Hlavičky webhooku @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Zahrnout dokument @@ -5620,7 +5620,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 203 - Has any of these tags + Má některý z těchto štítků Has all of these tags @@ -5628,7 +5628,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 210 - Has all of these tags + Má všechny tyto štítky Does not have these tags @@ -5636,7 +5636,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 217 - Does not have these tags + Nemá tyto štítky Has correspondent @@ -5652,7 +5652,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 232 - Does not have correspondents + Nemá tyto korespondenty Has document type @@ -5668,7 +5668,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 248 - Does not have document types + Nemá tyto typy dokumentů Has storage path @@ -5684,7 +5684,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 264 - Does not have storage paths + Nemá tyto cesty k úložišti Matches custom field query @@ -5692,7 +5692,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 272 - Matches custom field query + Odpovídá dotazu na vlastní pole Create new workflow @@ -5716,7 +5716,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 2,6 - {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} + {VAR_PLURAL, plural, =1 {Odeslat dokument emailem} few {Odeslat dokumenty emailem} other {Odeslat dokumentů emailem}} Email address(es) @@ -5768,7 +5768,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 37 - Some email servers may reject messages with large attachments. + Některé e-mailové servery mohou odmítnout zprávy s velkými přílohami. Email sent @@ -5784,7 +5784,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.ts 69 - Error emailing documents + Chyba při odesílání dokumentů Error emailing document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nepřiřazeno @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Otevřít filtr @@ -9571,7 +9571,7 @@ src/app/components/manage/mail/mail.component.html 143 - View Processed Mail + Zobrazit zpracovanou poštu No mail rules defined. @@ -9765,7 +9765,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Chyba při aktualizaci oprávnění @@ -9775,7 +9775,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 2 - Processed Mail for + Zpracovaná pošta pro No processed email messages found. @@ -9783,7 +9783,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 20 - No processed email messages found. + Nebyly nalezeny žádné zpracované e-mailové zprávy. Received @@ -9791,7 +9791,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 33 - Received + Přijato Processed @@ -9807,7 +9807,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts 72 - Processed mail(s) deleted + Zpracované zprávy byly odstraněny Filter by: @@ -9953,7 +9953,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Oprávnění úspěšně aktualizována @@ -9961,7 +9961,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Tato operace trvale odstraní všechny objekty. @@ -9969,7 +9969,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objekty úspěšně odstraněny @@ -9977,7 +9977,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Chyba při odstraňování objektů diff --git a/src-ui/src/locale/messages.da_DK.xlf b/src-ui/src/locale/messages.da_DK.xlf index 96b6d9601..527a22bfd 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Bekræft sletning @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Skelner ikke mellem store og små bogstaver @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Create new user account @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Edit user account @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Ikke tildelt @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.de_DE.xlf b/src-ui/src/locale/messages.de_DE.xlf index 7c8576499..5f6f40773 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Löschen bestätigen @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Groß-/Kleinschreibung irrelevant @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Dokumenttyp zuweisen @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Korrespondent zuweisen @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Neues Benutzerkonto erstellen @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Benutzerkonto bearbeiten @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP deaktiviert @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 TOTP-Deaktivierung fehlgeschlagen @@ -5016,7 +5016,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html 31 - Workflow auslösen bei: + Arbeitsablauf auslösen bei: Add Trigger @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Auslösertyp @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Legen Sie die Verzögerung des geplanten Auslösers und das zu verwendende Datumsfeld fest. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Verzögerung (Tage) @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive Werte werden nach dem Datum ausgelöst, negative Werte davor. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Bezogen auf @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Benutzerdefiniertes Feld @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Benutzerdefiniertes Feld, das als Datum verwendet wird. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Wiederkehrend @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Der Auslöser ist wiederkehrend. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Wiederkehrendes Intervall (Tage) @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Wiederholt den Auslöser alle n Tage. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Auslöser für Dokumente, die mit allen unten angegebenen Filtern übereinstimmen. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Dateinamen filtern @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Auf Dokumente anwenden, die mit diesem Dateinamen übereinstimmen. Platzhalter wie *.pdf oder *rechung* sind erlaubt. Groß- und Kleinschreibung wird nicht beachtet. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Quellen filtern @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Pfad filtern @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Auf Dokumente anwenden, die mit diesem Pfad übereinstimmen. Platzhalter wie * sind zulässig. Groß- und Kleinschreibung normalisiert.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 E-Mail-Regel filtern @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Auf Dokumente anwenden, die über diese E-Mail-Regel verarbeitet wurden. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Inhaltsabgleichsalgorithmus @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Inhaltsabgleichsmuster @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Erweiterte Filter @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Filter hinzufügen @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 Keine erweiterten Arbeitsablauf-Filter definiert. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Benutzerdefinierte Feldabfragekonfiguration abschließen. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Aktionstyp @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Titel zuweisen @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Kann einige Platzhalter enthalten, siehe <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>Dokumentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Tags zuweisen @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Speicherpfad zuweisen @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Benutzerdefinierte Felder zuweisen @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Eigentümer zuweisen @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Anzeigeberechtigungen zuweisen @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Bearbeitungsberechtigungen zuweisen @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Tags entfernen @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Alle entfernen @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Korrespondenten entfernen @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Dokumenttypen entfernen @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Speicherpfade entfernen @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Benutzerdefinierte Felder entfernen @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Eigentümer entfernen @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Berechtigungen entfernen @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Anzeigeberechtigungen @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Bearbeitungsberechtigungen @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 E-Mail-Betreff @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 E-Mail-Inhalt @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 E-Mail-Empfänger @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Dokument anhängen @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook-URL @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Parameter für Webhook-Inhalt verwenden @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Webhook-Payload als JSON senden @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook-Parameter @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook-Inhalt @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook-Kopfzeilen @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Dokument einbeziehen @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nicht zugewiesen @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Filter öffnen @@ -9765,7 +9765,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Fehler beim Aktualisieren der Berechtigungen @@ -9953,7 +9953,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Berechtigungen wurden erfolgreich aktualisiert @@ -9961,7 +9961,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Dieser Vorgang wird alle Objekte unwiderruflich löschen. @@ -9969,7 +9969,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objekte erfolgreich gelöscht @@ -9977,7 +9977,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Fehler beim Löschen der Objekte diff --git a/src-ui/src/locale/messages.el_GR.xlf b/src-ui/src/locale/messages.el_GR.xlf index ef655240d..4f870b0c4 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Επιβεβαίωση διαγραφής @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Χωρίς διάκριση πεζών/κεφαλαίων @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Ανάθεση τύπου εγγράφου @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Ανάθεση ανταποκριτή @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Δημιουργία νέου λογαριασμού χρήστη @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Επεξεργασία λογαριασμού χρήστη @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Δεν έχει ανατεθεί @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.es_ES.xlf b/src-ui/src/locale/messages.es_ES.xlf index 6dea592a9..18437b419 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Confirmar borrado @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Insensible a mayúsculas y minusculas @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Asignar tipo de documento @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Asignar interlocutor @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Crear nuevo usuario @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Editar cuenta de usuario @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp desactivado @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Falló la desactivación del Totp @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Tipo de activador @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Establezca el desplazamiento programado del disparador y el campo de fecha a utilizar. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Desplazamiento días @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relativo a @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Campo personalizado @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Campo personalizado a utilizar para la fecha. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurrente @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 El disparador es recurrente. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Días del intervalo recurrente @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repita el disparador cada n días. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Activador para documentos que coincidan con todos los filtros especificados a continuación. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtrar nombre del archivo @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Aplicar a documentos que coincidan con este nombre de archivo. Comodines como *.pdf o *factura* están permitidos. No distingue mayúsculas. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtrar fuentes @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtrar ruta @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Aplicar a documentos que coincidan con esta ruta. Comodines especificados como * están permitidos. No distingue mayúsculas.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filtrar regla de correo @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Aplicar a los documentos consumidos mediante esta regla de correo. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Algoritmo de coincidencia de contenido @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Patrón de coincidencia de contenido @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tipo de acción @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Asignar título @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Puede incluir algunos marcadores de posición, vea <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Asignar etiquetas @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Asignar ruta de almacenamiento @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Asignar campos personalizados @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Asignar dueño @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Asignar permisos de vista @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Asignar permisos de edición @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Eliminar etiquetas @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Eliminar todo @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Eliminar interlocutores @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Eliminar tipos de documentos @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Eliminar rutas de almacenamiento @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Eliminar campos personalizados @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Eliminar propietarios @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Eliminar permisos @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Ver permisos @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Editar permisos @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Asunto del correo electrónico @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Cuerpo del correo electrónico @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Destinatarios de correo @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Adjuntar un documento @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL del webhook @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Usar parámetros para el cuerpo del webhook @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Enviar payload del webhook como JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parámetros del webhook @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Cuerpo del webhook @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Encabezados del Webhook @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Incluir documento @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Sin asignar @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Abrir filtro @@ -6218,7 +6218,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 41 - Delete page + Eliminar página Add / remove document split here @@ -6234,7 +6234,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 70 - Split here + Dividir aquí Create new document(s) @@ -6258,7 +6258,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 94 - Copy metadata + Copiar metadatos Delete original @@ -7444,7 +7444,7 @@ src/app/components/document-detail/document-detail.component.ts 1392 - PDF Editor + Editor de PDF Send @@ -8000,7 +8000,7 @@ src/app/components/document-detail/document-detail.component.ts 1423 - Error executing PDF edit operation + Error al ejecutar la operación de edición PDF Print failed. @@ -9316,7 +9316,7 @@ src/app/components/file-drop/file-drop.component.ts 142 - Failed to read dropped items: + Error al leer elementos soltados: correspondent @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error al actualizar permisos @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permisos correctamente actualizados @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Esta operación eliminará todos los objetos permanentemente. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objetos eliminados con éxito @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error al eliminar objetos @@ -10661,7 +10661,7 @@ src/app/data/paperless-config.ts 214 - Enable ASN + Habilitar ASN ASN Prefix @@ -10669,7 +10669,7 @@ src/app/data/paperless-config.ts 221 - ASN Prefix + Prefijo ASN Upscale diff --git a/src-ui/src/locale/messages.et_EE.xlf b/src-ui/src/locale/messages.et_EE.xlf index 3f90c3e69..3c94db17e 100644 --- a/src-ui/src/locale/messages.et_EE.xlf +++ b/src-ui/src/locale/messages.et_EE.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Confirm delete @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Case insensitive @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Create new user account @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Edit user account @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Not assigned @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.fa_IR.xlf b/src-ui/src/locale/messages.fa_IR.xlf index 7cb589bb8..e8ba1b4ba 100644 --- a/src-ui/src/locale/messages.fa_IR.xlf +++ b/src-ui/src/locale/messages.fa_IR.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 حذف را تأیید کنید @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 غیر حساس @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 نوع سند را اختصاص دهید @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 خبرنگار را اختصاص دهید @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 حساب کاربری جدید ایجاد کنید @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 ویرایش حساب کاربری @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP غیرفعال @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 غیرفعال کردن TOTP انجام نشد @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 نوع ماشه @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 تنظیم برنامه ریزی شده را جبران کنید و از کدام قسمت تاریخ استفاده کنید. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 روزهای جبران @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 نسبت به @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 قسمت سفارشی @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 قسمت سفارشی برای استفاده برای تاریخ. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 عود @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 ماشه در حال تکرار است. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 روزهای مکرر @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 ماشه را هر n روز تکرار کنید. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 نام پرونده فیلتر @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 به اسنادی که مطابق با این نام پرونده هستند ، مراجعه کنید. کارتهای وحشی مانند *.pdf یا *فاکتور *مجاز است. مورد غیر حساس @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 منابع فیلتر @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 مسیر فیلتر @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 قانون نامه نامه فیلتر @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 به اسناد مصرفی از طریق این قانون نامه استفاده کنید. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 الگوریتم تطبیق محتوا @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 الگوی تطبیق محتوا @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 نوع عمل @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 عنوان اختصاص دادن @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 اختصاص برچسب ها @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 مسیر ذخیره سازی را اختصاص دهید @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 اختصاص زمینه های سفارشی @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 مالک @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 مجوزهای مشاهده را اختصاص دهید @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 مجوزهای ویرایش را اختصاص دهید @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 حذف برچسب ها @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 حذف همه @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 خبرنگاران را حذف کنید @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 حذف انواع سند @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 مسیرهای ذخیره سازی را حذف کنید @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 زمینه های سفارشی را حذف کنید @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 صاحبان را حذف کنید @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 مجوزها را حذف کنید @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 مشاهده مجوزها @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 مجوزها را ویرایش کنید @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 موضوع ایمیل @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 بدنه ایمیل @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 دریافت کنندگان ایمیل @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 سند پیوست @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL Webhook @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 از پارامترهایی برای بدنه Webhook استفاده کنید @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 ارسال Webhook Payload به عنوان JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 پارامترهای وب @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 بدنه وب @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 هدرهای Webhook @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 شامل سند @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned اختصاص داده نشده است @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 خطای به روزرسانی مجوزها @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 مجوزها با موفقیت به روز شد @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 این عمل به طور دائم تمام اشیاء را حذف می کند. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 اشیاء با موفقیت حذف شدند @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 خطای حذف اشیاء diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index 523cad704..9ae5fd4fc 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Vahvista poisto @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Kirjainkoko ei vaikuta @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Määritä asiakirjatyyppi @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Määritä yhteyshenkilö @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Luo uusi käyttäjätili @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Muokkaa käyttäjätiliä @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Mukautettu kenttä @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Suodata tiedostonimi @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Suodata lähteet @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Suodata polku @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Suodata sähköpostisääntö @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Määritä omistaja @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Määritä katseluoikeudet @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Määritä muokkausoikeudet @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Poista tunnisteet @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Poista kaikki @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Poista mukautetut kentät @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Poista omistajat @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Poista oikeudet @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Näytä oikeudet @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Muokkaa oikeuksia @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Ei määritetty @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Virhe käyttöoikeuksia päivittäessä @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Käyttöoikeudet päivitettiin onnistuneesti @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.fr_FR.xlf b/src-ui/src/locale/messages.fr_FR.xlf index 612b8f297..67882e212 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2124,7 +2124,7 @@ src/app/components/admin/tasks/tasks.component.ts 161 - Error dismissing tasks + Erreur lors du rejet des tâches Error dismissing task @@ -2132,7 +2132,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Erreur lors du rejet de la tâche queued @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Confirmer la suppression @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Insensible à la casse @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Affectation du type de document @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Affecter le correspondant @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Créer un nouveau compte utilisateur @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Modifier le compte utilisateur @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP désactivé @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 La désactivation du TOTP a échoué @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Type de déclenchement @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Définissez le décalage du déclencheur planifié et le champ de date à utiliser. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Décalage en jours @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Les valeurs positives se déclencheront après la date et les valeurs négatives avant. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relatif à @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Champ personnalisé @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Champ personnalisé à utiliser pour la date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Récurrent @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Le déclencheur est récurrent. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Intervalle récurrent en jours @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Répétez le déclencheur tous les n jours. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Déclenche pour les documents qui correspondent à tousles filtres spécifiés ci-dessous. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtrer le nom de fichier @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Appliquer aux documents qui correspondent à ce nom de fichier. Les expressions telles que *.pdf ou *facture* sont autorisées. Insensible à la casse. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtrer les sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtrer le chemin @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Appliquer aux documents qui correspondent à ce chemin. Les caractères génériques tels que "*" sont autorisés. Normalisation de la casse.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Règle de filtrage des messages @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Appliquer aux documents traités par cette règle de courrier. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Algorithme de correspondance de contenu @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Modèle de correspondance au contenu @@ -5214,39 +5214,39 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 - Advanced Filters + Filtres avancés Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 - Add filter + Ajouter un filtre No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 - No advanced workflow filters defined. + Aucun filtre de workflow avancé défini. Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 - Complete the custom field query configuration. + Complétez la configuration de requête de champ personnalisée. Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Type d'action @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Attribuer un titre @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Peut inclure certains caractères génériques, voir la <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assigner des étiquettes @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Attribuer un chemin de stockage @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Affecter des champs personnalisés @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Affecter un propriétaire @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Affecter des autorisations de consultation @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assigner des autorisations d'édition @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Supprimer des étiquettes @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Tout supprimer @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Supprimer des correspondants @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Supprimer des types de document @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Supprimer des chemins de stockage @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Supprimer des champs personnalisés @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Supprimer des propriétaires @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Supprimer des autorisations @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Autorisations de consultation @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Autorisations de modification @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Objet du courriel @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Corps du courriel @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Destinatires du courriel @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Joindre un document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL du Webhook @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Utiliser les paramètres pour le corps du webhook @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Envoyer le payload au format JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Paramètres du webhook @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Corps du Webhook @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 En-têtes Webhook @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Inclure le document @@ -5620,7 +5620,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 203 - Has any of these tags + A l'un de ces tags Has all of these tags @@ -5628,7 +5628,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 210 - Has all of these tags + A tous ces tags Does not have these tags @@ -5636,7 +5636,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 217 - Does not have these tags + Ne possède pas ces tags Has correspondent @@ -5652,7 +5652,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 232 - Does not have correspondents + N'a pas de correspondant Has document type @@ -5668,7 +5668,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 248 - Does not have document types + N'a pas de type de document Has storage path @@ -5684,7 +5684,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 264 - Does not have storage paths + N'a pas de chemins de stockage Matches custom field query @@ -5692,7 +5692,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 272 - Matches custom field query + Correspond à la requête de champ personnalisé Create new workflow @@ -5716,7 +5716,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 2,6 - {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} + {VAR_PLURAL, plural,=1 {Envoyer le document} other {Envoyer les documents}} Email address(es) @@ -5768,7 +5768,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 37 - Some email servers may reject messages with large attachments. + Certains serveurs de messagerie peuvent rejeter les messages comportant de grandes pièces jointes. Email sent @@ -5784,7 +5784,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.ts 69 - Error emailing documents + Erreur lors de l'envoi des documents Error emailing document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Non affecté @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Ouvrir le filtre @@ -9765,7 +9765,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Erreur lors de la mise à jour des droits d'accès @@ -9783,7 +9783,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 20 - No processed email messages found. + Received @@ -9953,7 +9953,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Les droits d'accès ont bien été mis à jour @@ -9961,7 +9961,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Cette opération supprimera définitivement tous les objets. @@ -9969,7 +9969,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects supprimés avec succès @@ -9977,7 +9977,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Erreur lors de la suppression des objets diff --git a/src-ui/src/locale/messages.he_IL.xlf b/src-ui/src/locale/messages.he_IL.xlf index 3b5a9a2ce..5a1a5e67e 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 אישור מחיקה @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 חסר רגישות תווים גדולים/קטנים (אנגלית) @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 שייך סוג מסמך @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 שייך מכותב זה @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 צור חשבון חדש @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 ערוך את החשבון @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp בוטל @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 השבתת Totp נכשלה @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 סוג טריגר @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 הגדרת היסט טריגר מתוזמן ואיזה שדה תאריך להשתמש בו. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 ימי היסט @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 ערכים חיוביים יפעילו את תהליך העבודה לפני התאריך, וערכים שליליים אחריו. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 ביחס ל @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 שדה מותאם אישית @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 שדה מותאם אישית לשימוש כתאריך. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 מחזורי @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 הטריגר חוזר על עצמו. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 מחזור ימי מרווח @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 חזור על הטריגר כל n ימים. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 טריגר למסמכים התואמים את כל המסננים המפורטים מטה. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 סנן לפי שם קובץ @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 חל על מסמכים התואמים את שם קובץ זה. תווים כלליים כגון *.pdf או *invoice* מותרים. לא רגיש רישיות. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 מקורות מסננים @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 מסנן לפי נתיב שמירה @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 חל על מסמכים התואמים את נתיב זה. תווים כלליים המצוינים כ-* מותרים. רישיות מנורמלת.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 סנן לפי כלל דואל @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 חל על מסמכים שנצרכו דרך כלל דואר זה. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 אלגוריתם התאמת תוכן @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 תבנית התאמת תוכן @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 סוג פעולה @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 הקצה כותרת @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 יכול לכלול כמה placeholders, ראה <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>תיעוד</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 הקצה תגיות @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 הקצה נתיב אחסון @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 הקצה שדות מותאמים אישית @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 הקצה בעלים @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 הקצה הרשאות צפיה למשתמש @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 הקצה הרשאות עריכה למשתמש @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 הסירו תגיות @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 הסר הכל @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 הסר מכותבים @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 הסר סוגי מסמכים @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 הסר מיקום אכסון @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 הסרת שדות מותאמים אישית @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 הסר בעלים @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 הסר הרשאות @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 צפה בהרשאות @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 ערוך הרשאות @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 נושא הדוא"ל @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 גוף אימייל @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 נמעני אימייל @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 צרף קובץ @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 כתובת ווב-הוק @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 שימוש בפרמטרים עבור גוף הווב-הוק @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 שליחת מטען ייעודי של ווב-הוק כ-JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 פרמטרים של הווב-הוק @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 גוף הווב-הוק @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 כותרות הווב-הוק @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 כלול מסמך @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned לא הוקצה @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 פתחו מסנן @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 שגיאת שינוי הרשאות @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 ההרשאות עודכנו בהצלחה @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 פעולה זו תמחק לצמיתות את כל האובייקטים. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 הפריטים נמחקו בהצלחה @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 שגיאה במחיקת פריטים diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index 7b4b9f160..3660bf2d5 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Confirm delete @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Neosjetljivo na velika i mala slova @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Create new user account @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Edit user account @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nije dodijeljen @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.hu_HU.xlf b/src-ui/src/locale/messages.hu_HU.xlf index d97fa576d..f5ba7ad40 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Törlés megerősítése @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Nagy- és kisbetű érzéketlen @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Dokumentumtípus hozzárendelése @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Levelező kijelölése @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Új felhasználói fiók létrehozása @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Felhasználói fiók szerkesztése @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp letiltva @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp letiltási hiba @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Aktiválás típusa @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Aktiválási eltolás és a használt dátum mező beállítása. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Eltolás ennyi nappal @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Pozitív értékek a dátum után, negatív értékek a dátum előtt fognak aktiválódni. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Ehhez képest @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Egyéni mező @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 A dátumhoz használt egyéni mező. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Ismétlődő @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Az aktiválás ismétlődik. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Ismétlődés intervalluma napokban @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Ismételje meg az aktiválást n naponta. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Azon dokumentumoknál aktiválódjon, amelyekre az alábbi szűrők mindegyike igaz. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Szűrő fájlnév @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 A fájlnévnek megfelelő dokumentumokra alkalmazza. Az olyan helyettesítő karakterek, mint *.pdf vagy *számla* engedélyezettek. Nagy- és kisbetűkre nem érzékeny. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Szűrőforrások @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Szűrési útvonal @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Alkalmazza az erre az elérési útvonalra vonatkozó dokumentumokra. A *-gal megadott helyettesítő karakterek engedélyezettek. Nagy- és kisbetűkre nem érzékeny.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Mail szabály szűrő @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Alkalmazza az ezen a levelezési szabályon keresztül feldolgozott dokumentumokra. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Tartalom mintázati algoritmus @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Tartalom mintázata @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tevékenység típusa @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Cím hozzárendelése @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Tartalmazhat dinamikus mezőket, lásd <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>a dokumentációban</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Címkék hozzárendelése @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Tárolási útvonal hozzárendelése @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Egyedi mezők hozzárendelése @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Tulajdonos kijelölése @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Nézetjogosultságok hozzárendelése @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Szerkesztési engedélyek hozzárendelése @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Címkék eltávolítása @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Összes eltávolítása @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Levelezőpartner eltávolítása @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Dokumentumtípus eltávolítása @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Tárolási útvonal eltávolítása @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Egyéni mezők eltávolítása @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Tulajdonosok eltávolítása @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Jogosultságok eltávolítása @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Jogosultságok megjelenítése @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Jogosultságok szerkesztése @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 E-mail tárgya @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 E-mail szövege @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email címzettek @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Dokumentum csatolása @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Paraméterek használata a webhook törzsében @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Webhook tartalom küldése JSON-ként @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook paraméterek @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook törzse @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook fejlécei @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Dokumentum melléklése @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nincs hozzárendelve @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 filter megnyitása @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Hiba az engedélyek frissítésében @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Az engedélyek sikeresen frissültek @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Ez a művelet véglegesen törli az összes objektumot. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objektumok sikeresen törölve @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Hiba az objektumok törlésekor diff --git a/src-ui/src/locale/messages.id_ID.xlf b/src-ui/src/locale/messages.id_ID.xlf index 8d4a6e53c..1c1b472a1 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Konfirmasi hapus @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Tidak membedakan huruf besar kecil @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Tetapkan jenis dokumen @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Tetapkan koresponden @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Buat akun pengguna baru @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Ubah akun pengguna @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp dinonaktifkan @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Gagal menonaktifkan Totp @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Jenis pemicu @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Atur jeda pemicu terjadwal dan kolom tanggal yang digunakan. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Hari jeda @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Nilai positif akan memicu setelah tanggalnya, nilai negatif sebelum tanggalnya. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relatif terhadap @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Bidang khusus @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Bidang khusus yang digunakan untuk tanggal. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Berulang @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Pemicu berulang. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Hari interval berulang @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Ulangi pemicu setiap n hari. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Aktifkan untuk dokumen yang cocok semua penyaring ditentukan di bawah. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter nama berkas @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Terapkan pada dokumen yang sepenuhnya cocok dengan nama berkas ini. Karakter pengganti seperti *.pdf atau *faktur* diperbolehkan. Abaikan huruf besar/kecil. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sumber @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter lokasi @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Terapkan pada dokumen yang sepenuhnya cocok dengan lokasi ini. Karakter pengganti seperti * diperbolehkan. Huruf dinormalisasi.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter aturan surel @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Terapkan pada dokumen yang di consume lewat aturan surat ini. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Konten yang sesuai algoritma @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Konten sesuai pola @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Filter Lanjutan @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Tambah Filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Lengkapi konfigurasi kueri bidang khusus @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Jenis aksi @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Tetapkan judul @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Bisa memasukkan beberapa placeholder, lihat <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentasi</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Tetapkan label @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Tetapkan lokasi penyimpanan @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Menetapkan variasi kolom @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Tetapkan pemilik @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Tetapkan izin tampilan @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Tetapkan izin edit @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Hapus label @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Hapus semua @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Hapus koresponden @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Hapus jenis dokumen @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Hapus lokasi penyimpanan @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Hapus kolom khusus @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Hapus pemilik @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Hapus izin @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Lihat izin @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Sunting izin @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Subjek email @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Isi email @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Penerima email @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Lampirkan dokumen @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Url webhook @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Gunakan parameter untuk isi webhook @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Kirim payload webhook sebagai JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parameter webhook @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Isi webhook @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Header webhook @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Sertakan dokumen @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Tidak ditugaskan @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Buka saring @@ -9765,7 +9765,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9953,7 +9953,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9961,7 +9961,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9969,7 +9969,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9977,7 +9977,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.it_IT.xlf b/src-ui/src/locale/messages.it_IT.xlf index e5f831fe9..9b232f216 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Conferma eliminazione @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Senza distinzione tra maiuscole e minuscole @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assegna tipo di documento @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assegna corrispondente @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Crea nuovo account utente @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Modifica account utente @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP disattivato @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Disattivazione del TOTP fallita @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Tipo di trigger @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Imposta un offset di attivazione programmato e quale campo data usare. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset in giorni @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Valori positivi si attiveranno dopo la data, i valori negativi prima. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relativo a @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Campo personalizzato @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Campo personalizzato da usare per la data. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Ricorrente @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Il trigger si ripete. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Intervallo di ripetizione in giorni @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Ripeti il trigger ogni n giorni. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Attiva per i documenti che corrispondono a tutti filtri specificati di seguito. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtra nome file @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Elabora i documenti che corrispondono a questo nome. Puoi usare wildcard come *.pdf o *fattura*. Ignora maiuscole e minuscole. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtra sorgenti @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtro percorso @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Applica ai documenti che corrispondono a questo percorso. I caratteri jolly specificati come * sono consentiti. Case-normalizzato.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Regola e-mail @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Applica ai documenti elaborati attraverso questa regola di posta. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Algoritmo di corrispondenza contenuti @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Modello di corrispondenza contenuti @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tipo di Azione @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assegna titolo @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Può includere alcuni segnaposto, vedere <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assegna tag @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assegna percorso di archiviazione @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assegna campi personalizzati @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assegna proprietario @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assegna permessi di visualizzazione @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assegna permessi di modifica @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Rimuovi tag @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Rimuovi tutto @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Rimuovi corrispondenti @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Rimuovi tipi di documento @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Rimuovi percorsi di archiviazione @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Rimuovi campi personalizzati @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Rimuovi proprietari @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Rimuovi permessi @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Visualizza permessi @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Modifica permessi @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Oggetto email @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Corpo e-mail @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Destinatari email @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Allega documento @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook URL @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Usa parametri per il corpo del webhook @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Invia il payload del webhook come JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parametri Webhook @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Corpo Webhook @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Header Webhook @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Includi documento @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Non assegnato @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Apri filtro @@ -9765,7 +9765,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Errore durante l'aggiornamento dei permnessi @@ -9953,7 +9953,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permessi aggiornati @@ -9961,7 +9961,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Questa operazione eliminerà permanentemente tutti gli oggetti. @@ -9969,7 +9969,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Oggetti eliminati con successo @@ -9977,7 +9977,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Errore nell'eliminazione degli oggetti diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index 7acdaef6c..d08e0b24b 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 本当に削除しますか? @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 大文字・小文字を区別しない @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 ドキュメントタイプの割り当て @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 発信元の割り当て @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 新規ユーザーアカウントの作成 @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 ユーザーアカウントの編集 @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTPが無効です @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 TOTPの無効化に失敗しました @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 トリガーの種類 @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 スケジュールされたトリガー オフセットと使用する日付フィールドを設定します。 @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 オフセット日 @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 相対的に @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 カスタムフィールド @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 日付に使用するカスタムフィールドです。 @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 繰り返し @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 トリガーは繰り返します。 @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 繰り返しの間隔 @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 n日ごとにトリガーを繰り返します。 @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 以下の すべての フィルターにマッチするドキュメントのトリガー @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 ファイル名のフィルター @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 このファイル名にマッチするドキュメントに適用されます。 *.pdf や *請求書* などのワイルドカードが使用できます。大文字・小文字を区別しません。 @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 ソースのフィルター @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 パスのフィルター @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 このパスにマッチするドキュメントに適用されます。 * で指定されたワイルドカードが使用できます。大文字・小文字を区別しません。 @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 メールルールのフィルター @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 このメールルールを介して利用されるドキュメントに適用されます。 @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 内容のマッチングアルゴリズム @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 内容のマッチングパターン @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 アクションの種類 @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 タイトルの割り当て @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 プレースホルダーを含めることができます。 <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>マニュアル</a> を参照してください。 @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 タグの割り当て @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 フォルダーの割り当て @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 カスタム項目の割り当て @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 所有者の割り当て @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 表示権限の割り当て @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 編集権限の割り当て @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 タグの削除 @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 すべて削除 @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 発信元の削除 @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 ドキュメントタイプの削除 @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 フォルダーの削除 @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 カスタム項目の削除 @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 所有者の削除 @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 権限の削除 @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 権限の表示 @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 権限の編集 @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 メールの件名 @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 メール本文 @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 メール受信者 @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 ドキュメントを添付 @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook URL @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Webhook本文にパラメータを使用する @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 WebhookペイロードをJSONとして送信 @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhookパラメータ @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook本文 @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhookヘッダー @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 ドキュメントを含める @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned 未割り当て @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 フィルタを開く @@ -9765,7 +9765,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 権限の更新に失敗しました @@ -9953,7 +9953,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 権限は正常に更新されました @@ -9961,7 +9961,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 この操作により、すべてのオブジェクトは完全に削除されます。 @@ -9969,7 +9969,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 オブジェクトは正常に削除されました @@ -9977,7 +9977,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 オブジェクトの削除に失敗しました diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index f21f8d0d9..8e280e4c1 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 삭제 검토 @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 대소문자 구분 안 함 @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 이 문서 유형 지정 @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 에서 통신원을 지정합니다. @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 새로운 사용자 계정 만들기 @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 사용자 계정 수정 @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp 비활성화 @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp 비활성화 실패됨 @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 트리거 유형 @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 예약 트리거 오프셋과 사용할 날짜 필드를 설정합니다. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 오프셋 날짜 @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 양수 값은 날짜 이후에, 음수 값은 그 이전에 트리거됩니다. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 상대적 @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 사용자 정의 필드 @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 날짜에 사용할 사용자 지정 필드입니다. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 반복 @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 트리거가 반복되고 있습니다. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 반복 간격일 @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 n일마다 트리거를 반복합니다. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 아래에 지정된 모든 필터와 일치하는 문서에 대해 트리거합니다. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 파일 이름 필터 @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 지정된 경우 파일 이름과 완전히 일치하는 문서만 사용합니다. *.pdf와 같은 와일드카드 또는 *invoice*와 같은 것이 허용됩니다. 대소문자를 구분하지 않습니다. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 출처 필터 @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 필터 경로 @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 이 경로와 일치하는 문서에 적용합니다. 와일드카드는 *로 지정할 수 있습니다. 대/소문자 정규화.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 필터 메일 규칙 @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 이 메일 규칙을 통해 사용되는 문서에 적용합니다. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 콘텐츠 일치 알고리즘 @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 콘텐츠 일치 패턴 @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 동작 유형 @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 제목 지정 @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 일부 자리표시자를 포함할 수 있습니다. 자세한 내용은 <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>문서</a>를 참조하세요. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 태그 할당 @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 이 저장 경로를 할당합니다. @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 사용자 지정 필드 할당 @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 소유자 할당 @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 보기 권한 할당 @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 편집 권한 할당 @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 태그 제거 @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 모두 제거 @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 담당자 제거 @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 모든 문서 유형 제거 @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 모든 저장소 경로 제거 @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 사용자 정의 필드 제거 @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 소유자 제거 @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 권한 제거 @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 권한 보기 @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 권한 수정 @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 이메일 제목 @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 이메일 본문 @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 이메일 수신자 @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 문서 첨부 @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 웹훅 URL @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 웹훅 본문에 매개변수 사용 @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 웹훅 페이로드를 JSON으로 보내기 @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 웹훅 매개변수 @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 웹훅 본문 @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 웹훅 헤더 @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 문서 포함 @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned 할당되지 않음 @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 "" 필터 열기 @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 권한 업데이트 중 오류 발생 @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 권한을 성공적으로 업데이트하였습니다 @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 이 작업은 모든 개체를 영구적으로 삭제합니다. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 개체가 성공적으로 삭제됨 @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 개체 삭제 중 오류 발생 diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 11f66b352..6bff23785 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Läsche bestätegen @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Grouss-/Klengschreiwung ignoréieren @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Create new user account @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Edit user account @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Net zougewisen @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.lt_LT.xlf b/src-ui/src/locale/messages.lt_LT.xlf index 577c25bf8..a0252b1bc 100644 --- a/src-ui/src/locale/messages.lt_LT.xlf +++ b/src-ui/src/locale/messages.lt_LT.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Confirm delete @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Case insensitive @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Create new user account @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Edit user account @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Not assigned @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.lv_LV.xlf b/src-ui/src/locale/messages.lv_LV.xlf index c33e7a1ff..00273213b 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Confirm delete @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Case insensitive @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Create new user account @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Edit user account @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Dzēst birkas @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Dzēst visus @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Noņemt atļaujas @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Skatīt atļaujas @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Rediģēt atļaujas @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nav piešķirts @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf index bbea582f5..0b9d66516 100644 --- a/src-ui/src/locale/messages.ms_MY.xlf +++ b/src-ui/src/locale/messages.ms_MY.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Confirm delete @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Case insensitive @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Create new user account @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Edit user account @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Not assigned @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.nl_NL.xlf b/src-ui/src/locale/messages.nl_NL.xlf index 5e4cf8381..7b202423e 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Bevestig het verwijderen @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Niet hoofdlettergevoelig @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Documenttype toewijzen @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Correspondent toewijzen @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Nieuw gebruikersaccount maken @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Bewerk gebruikersaccount @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP uitgeschakeld @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Fout bij uitschakelen TOTP @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relatief aan @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Aangepast veld @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Herhalend @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Herhalingsinterval in dagen @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger voor documenten die overeenkomen met alle filters hieronder. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Bestandsnaam filteren @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Toepassen op documenten die overeenkomen met deze bestandsnaam. Wildcards als *.pdf of *factuur* zijn toegestaan. Niet hoofdlettergevoelig. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Bronnen filteren @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter op opslaglocatie @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Toepassen op documenten die overeenkomen met dit pad. Wildcards met * zijn toegestaan. Hoofdletters worden genormaliseerd.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter op e-mailregel @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Toepassen op documenten die via deze e-mailregel zijn toegevoegd. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Inhoud matchingsalgoritme @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Inhoud matchen op patroon @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Actietype @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Titel toewijzen @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Kan gebruik maken van sommige placeholders, zie <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentatie</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Labels toewijzen @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Opslaglocatie toewijzen @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Aangepaste velden toewijzen @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Eigenaar toewijzen @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Weergaverechten toewijzen @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Bewerkingsrechten toewijzen @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Verwijder labels @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Verwijder alle @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Verwijder correspondenten @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Verwijder documenttypes @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Verwijder opslagpaden @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Verwijder aangepaste velden @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Verwijder eigenaars @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Verwijder rechten @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Bekijk rechten @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Bewerk rechten @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 E-mail onderwerp @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 E-mail tekst @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 E-mail ontvangers @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Voeg document toe @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook URL @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Gebruik parameters voor de webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Verzend webhook payload als JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook parameters @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Zonder toewijzing @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9765,7 +9765,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Fout bij bijwerken rechten @@ -9953,7 +9953,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Rechten succesvol bijgewerkt @@ -9961,7 +9961,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Deze bewerking zal alle objecten permanent verwijderen. @@ -9969,7 +9969,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objecten succesvol verwijderd @@ -9977,7 +9977,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Fout bij verwijderen object diff --git a/src-ui/src/locale/messages.no_NO.xlf b/src-ui/src/locale/messages.no_NO.xlf index e7ed768fd..2b71a796e 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Bekreft sletting @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Skill IKKE mellom store og små bokstaver @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Tilordne dokumenttype @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Tildel korrespondent @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Opprett ny brukerkonto @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Rediger brukerkonto @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Tildel lagringssti @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Tilordne eier @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Tilordne visningstillatelser @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Tilordne redigeringstillatelser @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Fjern etiketter @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Fjern alle @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Fjern korrespondenter @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Fjern dokumenttyper @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Fjern lagringsstier @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Fjern eiere @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Fjern tillatelser @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Vis rettigheter @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Endre rettigheter @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Ikke tildelt @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.pl_PL.xlf b/src-ui/src/locale/messages.pl_PL.xlf index 64cd27b92..2ce0114d4 100644 --- a/src-ui/src/locale/messages.pl_PL.xlf +++ b/src-ui/src/locale/messages.pl_PL.xlf @@ -65,7 +65,7 @@ node_modules/.pnpm/@ng-bootstrap+ng-bootstrap@19.0.1_@angular+common@20.3.2_@angular+core@20.3.2_@angular+_4a8591e6ee586bf00b666f6438778cc7/node_modules/src/ngb-config.ts 13 - HH + GG Close @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1128,7 +1128,7 @@ src/app/components/admin/settings/settings.component.html 179 - Show document counts in sidebar saved views + Pokaż liczniki dokumentów w pasku bocznym Document editing @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2124,7 +2124,7 @@ src/app/components/admin/tasks/tasks.component.ts 161 - Error dismissing tasks + Błąd zakończenia zadań Error dismissing task @@ -2132,7 +2132,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Błąd zakończenia zadania queued @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Potwierdź usunięcie @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 (Nieuwzględniający wielkości liter) @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Przypisz typ dokumentu @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Przypisz korespondenta @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4792,7 +4792,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 15 - Parent + Nadrzędny/a Inbox tag @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Utwórz nowe konto użytkownika @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Edytuj konto użytkownika @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp wyłączony @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Dezaktywacja totp nie powiodła się @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Typ wyzwalacza @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Ustaw offset zaplanowanego wyzwalacza i pole daty do użycia. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Liczba dni przesunięcia @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Dodatnie wartości spowodują działanie po dacie, a ujemne – przed nią. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Względem @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Pole niestandardowe @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Pole niestandardowe używane dla daty. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Cykliczne @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Wyzwalacz jest cykliczny. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Odstęp w dniach @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Powtarzaj wyzwalacz co n dni. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Wyzwalacze do dokumentów, które pasują do wszystkich filtrów określonych poniżej. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtruj po nazwie pliku @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Zastosuj do dokumentów, które pasują do tej nazwy pliku. Maski takie jak *.pdf lub *faktura* są dozwolone. Wielkość liter nie ma znaczenia. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtruj źródła @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtruj ścieżkę @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Zastosuj do dokumentów pasujących do tej ścieżki. Dozwolone są symbole wieloznaczne takie jak *. Wielkość liter nie ma znaczenia.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Reguła filtrowania wiadomości e-mail @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Zastosuj do dokumentów pobieranych za pomocą tej reguły mailowej. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Algorytm dopasowania zawartości @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Wzór dopasowania zawartości @@ -5214,39 +5214,39 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 - Advanced Filters + Filtry zaawansowane Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 - Add filter + Dodaj filtr No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 - No advanced workflow filters defined. + Nie zdefiniowano zaawansowanych filtrów przepływu pracy. Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 - Complete the custom field query configuration. + Zakończ konfigurację pola niestandardowego. Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Typ akcji @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Przypisz tytuł @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Może zawierać różna zmienne, zobacz <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentację</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Przypisz tagi @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Przypisz ścieżkę zapisu @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Przypisz pola dodatkowe @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Przypisz właściciela @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Przypisz uprawnienia do przeglądania @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Przypisz uprawnienia do edycji @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Usuń tagi @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Usuń wszystko @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Usuń korespondentów @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Usuń typy dokumentów @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Usuń ścieżki zapisu @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Usuń pole niestandardowe @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Usuń właścicieli @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Usuń uprawnienia @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Uprawnienia do przeglądania @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Uprawnienia do edycji @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Temat e-maila @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Treść e-maila @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Odbiorcy e-maila @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Dołącz dokument @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Adres URL webhooka @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Użyj parametrów dla treści webhooka @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Wyślij ładunek webhooka jako JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parametry webhooka @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Treść webhooka @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Nagłówki webhooka @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Dołącz dokument @@ -5620,7 +5620,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 203 - Has any of these tags + Zawiera którykolwiek z podanych tagów Has all of these tags @@ -5628,7 +5628,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 210 - Has all of these tags + Zawiera wszystkie podane tagi Does not have these tags @@ -5636,7 +5636,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 217 - Does not have these tags + Nie zawiera żadnego z podanych tagów Has correspondent @@ -5652,7 +5652,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 232 - Does not have correspondents + Nie posiada korespondentów Has document type @@ -5668,7 +5668,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 248 - Does not have document types + Nie posiada typów dokumentów Has storage path @@ -5676,7 +5676,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 256 - Has storage path + Ma ścieżkę zapisu w Does not have storage paths @@ -5684,7 +5684,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 264 - Does not have storage paths + Brak ścieżki zapisu w Matches custom field query @@ -5692,7 +5692,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 272 - Matches custom field query + Pasuje do zapytania o pole niestandardowe Create new workflow @@ -5716,7 +5716,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 2,6 - {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} + {VAR_PLURAL, plural, =1 {Dokument e-mailowy} other {Wyślij dokumentów e-mailowych}} Email address(es) @@ -5768,7 +5768,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 37 - Some email servers may reject messages with large attachments. + Niektóre serwery poczty elektronicznej mogą odrzucać wiadomości z dużymi załącznikami. Email sent @@ -5784,7 +5784,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.ts 69 - Error emailing documents + Błąd podczas wysyłania dokumentów Error emailing document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nieprzypisane @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Otwórz filtr @@ -6162,7 +6162,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 9 - Select all pages + Zaznacz wszystkie strony Deselect all pages @@ -6170,7 +6170,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 12 - Deselect all pages + Odznacz wszystkie strony Rotate selected pages counter-clockwise @@ -6178,7 +6178,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 17 - Rotate selected pages counter-clockwise + Obróć wybrane strony przeciwnie do ruchu wskazówek zegara Rotate selected pages clockwise @@ -6186,7 +6186,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 20 - Rotate selected pages clockwise + Obróć wybrane strony zgodnie z ruchem wskazówek zegara Delete selected pages @@ -6194,7 +6194,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 23 - Delete selected pages + Usuń wybrane strony Rotate page counter-clockwise @@ -6202,7 +6202,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 33 - Rotate page counter-clockwise + Obróć stronę przeciwnie do ruchu wskazówek zegara Rotate page clockwise @@ -6210,7 +6210,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 36 - Rotate page clockwise + Obróć stronę zgodnie z ruchem wskazówek zegara Delete page @@ -6218,7 +6218,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 41 - Delete page + Usuń stronę Add / remove document split here @@ -6226,7 +6226,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 44 - Add / remove document split here + Dodaj / usuń podział dokumentu Split here @@ -6234,7 +6234,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 70 - Split here + Podziel tutaj Create new document(s) @@ -6242,7 +6242,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 82 - Create new document(s) + Utwórz nowy dokument(y) Update existing document @@ -6250,7 +6250,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 87 - Update existing document + Zaktualizuj istniejący dokument Copy metadata @@ -6258,7 +6258,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 94 - Copy metadata + Skopiuj metadane Delete original @@ -6266,7 +6266,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 98 - Delete original + Usuń oryginał Merge with existing permissions @@ -7030,7 +7030,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 257 - WebSocket Connection + Połączenie WebSocket OK @@ -7038,7 +7038,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 261 - OK + OK Copy Raw Error @@ -7376,7 +7376,7 @@ src/app/components/document-detail/document-detail.component.html 7,8 - of + z - @@ -7420,7 +7420,7 @@ src/app/components/document-detail/document-detail.component.html 58 - Print + Drukuj More like this @@ -7444,7 +7444,7 @@ src/app/components/document-detail/document-detail.component.ts 1392 - PDF Editor + Edytor dokumentu PDF Send @@ -7992,7 +7992,7 @@ src/app/components/document-detail/document-detail.component.ts 1411 - PDF edit operation for "" will begin in the background. + Edycja dokumentu PDF dla "" rozpocznie się w tle. Error executing PDF edit operation @@ -8000,7 +8000,7 @@ src/app/components/document-detail/document-detail.component.ts 1423 - Error executing PDF edit operation + Błąd podczas edycji dokumentu PDF Print failed. @@ -8008,7 +8008,7 @@ src/app/components/document-detail/document-detail.component.ts 1455 - Print failed. + Błąd drukowania. Error loading document for printing. @@ -8016,7 +8016,7 @@ src/app/components/document-detail/document-detail.component.ts 1463 - Error loading document for printing. + Błąd ładowania dokumentu do wydruku. An error occurred loading tiff: @@ -9571,7 +9571,7 @@ src/app/components/manage/mail/mail.component.html 143 - View Processed Mail + Zobacz Przetworzoną pocztę No mail rules defined. @@ -9765,7 +9765,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Błąd aktualizacji uprawnień @@ -9775,7 +9775,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 2 - Processed Mail for + Przetworzona poczta dla No processed email messages found. @@ -9783,7 +9783,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 20 - No processed email messages found. + Nie znaleziono przetworzonych wiadomości. Received @@ -9791,7 +9791,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 33 - Received + Odebrano Processed @@ -9799,7 +9799,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 34 - Processed + Przetworzono Processed mail(s) deleted @@ -9807,7 +9807,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts 72 - Processed mail(s) deleted + Usunięto przetworzone wiadomości Filter by: @@ -9953,7 +9953,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Uprawnienia zostały pomyślnie zaktualizowane @@ -9961,7 +9961,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Ta operacja spowoduje trwałe usunięcie wszystkich obiektów. @@ -9969,7 +9969,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Obiekty usunięte pomyślnie @@ -9977,7 +9977,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Błąd usuwania obiektów @@ -10379,7 +10379,7 @@ src/app/data/custom-field.ts 55 - Long Text + Pełny tekst Search score @@ -11204,7 +11204,7 @@ src/app/services/settings.service.ts 249 - Vietnamese + Wietnamski Chinese Simplified diff --git a/src-ui/src/locale/messages.pt_BR.xlf b/src-ui/src/locale/messages.pt_BR.xlf index ccdd4cbfe..e76420c67 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Confirmar exclusão @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Não diferenciar maiúsculas de minúsculas @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Atribuir tipo de documento @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Atribuir correspondente @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Criar uma nova conta de usuário @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Editar conta de usuário @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp desativado @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Desativação de totp falhou @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Tipo de acionador @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Define o deslocamento do gatilho programado e o campo a ser usado. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Dias de deslocamento @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Valores positivos serão acionados após a data, valores negativos antes. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relativo a @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Campo personalizado @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Campo personalizado para usar para data. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recorrente @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Gatilho é recorrente. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Dias do intervalo recorrentes @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repetir o gatilho a cada n dias. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Acionar os documentos que correspondem a todos os filtros especificados abaixo. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtro de nome de arquivo @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Aplica-se a documentos que correspondem a esse nome de arquivo. Caracteres curinga como *.pdf ou *fatura* são permitidos. Sem diferenciação de maiúsculas e minúsculas. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtro de fontes @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtro de caminho @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Aplica-se a documentos que correspondem a esse caminho. Caracteres curinga usando * são permitidos. Sem diferenciação de maiúsculas e minúsculas.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filtro de regra de e-mail @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Aplica-se a documentos consumidos por essa regra de e-mail. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Algoritmo de conteúdo correspondente @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Conteúdo correspondente padrão @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tipo de ação @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Atribuir título @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Pode incluir alguns espaços reservados, consulte a <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentação</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Atribuir etiquetas @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Atribuir caminho de armazenamento @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Atribuir campos personalizados @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Atribuir proprietário @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Atribuir permissões de visualização @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Atribuir permissões de edição @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remover etiquetas @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remover tudo @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remover correspondentes @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remover tipos de documentos @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remover caminhos de armazenamento @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remover campos personalizados @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remover proprietários @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remover permissões @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Exibir Permissões @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Editar permissões @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Assunto do email @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Corpo do e-mail @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Destinatários de e-mail @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Anexar documento @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Url do webhook @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Usar parâmetros para o corpo do webhook @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Enviar payload do webhook como JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parâmetros do webhook @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Corpo do webhook @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Cabeçalhos de webhook @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Incluir documentos @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Não atribuído @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Abrir filtro @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissões atualizadas com sucesso @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Esta operação irá apagar permanentemente todos os objetos. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objeto(s) excluído(s) com sucesso. @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Erro ao apagar objetos diff --git a/src-ui/src/locale/messages.pt_PT.xlf b/src-ui/src/locale/messages.pt_PT.xlf index 8fd38251e..836d331f7 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Confirmar eliminação @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Não distinguir entre maiúsculas e minúsculas @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Definir ao tipo de documento através de @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Definir correspondente @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Criar nova conta de utilizador @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Editar conta de utilizador @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp desativado @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Dias de desfasamento @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Valores positivos serão acionados após a data, valores negativos antes da data. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Atribuir título @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Atribuir etiquetas @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Atribuir responsável @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Não atribuído @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Erro ao atualizar permissões @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.ro_RO.xlf b/src-ui/src/locale/messages.ro_RO.xlf index 32f2ddc2d..b3a2f5558 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Confirmă ștergerea @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Ignoră majusculele @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Crează un nou cont de utilizator @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Editează contul de utilizator @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtru nume fișier @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Aplică la documentele care se potrivesc cu acest nume de fișier. Wildcards cum ar fi *.pdf sau *factura* sunt permise. Masca insensibilă. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtrare surse @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtrare cale @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Regulă filtrare e-mail @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Aplică la documentele consumate prin această regulă de e-mail. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nealocate @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.ru_RU.xlf b/src-ui/src/locale/messages.ru_RU.xlf index 21ba8a2b9..a5c432a9d 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Подтвердите удаление @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Без учёта регистра @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Назначить тип документа @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Назначить корреспондента @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Создать новую учетную запись пользователя @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Редактировать учетную запись пользователя @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp деактивирован @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Ошибка деактивации Totp @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Тип триггера @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Задайте смещение запланированного триггера и какое поле даты использовать. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Дни смещения @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Положительные значения будут срабатывать после даты, а отрицательные - перед ней. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Относительно @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Пользовательское поле @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Пользовательское поле, чтобы использовать для даты. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Повторяющееся @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Триггер повторяется. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Повторяющиеся дни интервала @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Повторять триггер каждые n дней. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Триггер для документов, соответствующих всем фильтрам указанным ниже. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Фильтр имя файла @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Обрабатывать только документы, которые полностью совпадают с именем файла. Маски, например *.pdf или *счет*, разрешены. Не учитывает регистр. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Фильтр источников @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Фильтр пути @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Обрабатывать только документы, которые соответствуют данному пути. Маски, указанные как *, разрешены. Допускается регистр.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Фильтр почтовых правил @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Обрабатывать только документы, добавленные через это почтовое правило. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Алгоритм подбора содержимого @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Шаблон подбора содержимого @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Тип действия @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Присвоить заголовок @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Может содержать некоторые заполнители, смотрите <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>документацию</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Назначить метки @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Назначить путь хранения @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Назначить пользовательские поля @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Назначить владельца @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Назначить права для просмотра @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Назначить права для редактирования @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Удалить теги @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Удалить всё @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Удалить корреспондентов @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Удалить типы документов @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Удалить пути хранения @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Удалить пользовательские поля @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Удалить владельцев @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Удалить разрешения @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Просмотр разрешений @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Изменить разрешения @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Тема письма @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Текст письма @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Получатели письма @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Прикрепить документ @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL вебхука @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Использовать параметры для тела веб-хука @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Отправить webhook загрузку как JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Параметры вебхука @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Тело веб хука @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 HTTP-заголовки вебхука @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Включать документ @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Не назначено @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Открыть фильтр @@ -9765,7 +9765,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Ошибка обновления прав доступа @@ -9953,7 +9953,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Права доступа успешно обновлены @@ -9961,7 +9961,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Эта операция окончательно удалит все объекты. @@ -9969,7 +9969,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Объекты успешно удалены @@ -9977,7 +9977,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Ошибка при удалении объектов diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index f520d78aa..cc1582234 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Potvrdiť vymazanie @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Nerozlišuje veľké a malé písmená @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Priradiť typ dokumentu @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Priradiť odosielateľa @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Vytvoriť nový účet používateľa @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Upraviť účet používateľa @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Odstrániť typy dokumentov @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Odstrániť cesty k úložisku @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nepriradené @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.sl_SI.xlf b/src-ui/src/locale/messages.sl_SI.xlf index ddc747dbf..de3b6838a 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Potrdi brisanje @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Brez razlikovanje velikosti črk @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Dodeli vrsto dokumenta @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Dodeli dopisnika @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Ustvari nov uporabniški račun @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Uredi uporabniški račun @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Topp deaktiviran @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Deaktivacija Totp ni uspela @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Vrstra sprožilca @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Nastavite načrtovani odmik sprožilca in katero datumsko polje želite uporabiti. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Izravnalni dnevi @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Pozitivne vrednosti se bodo sprožile po datumu, negativne vrednosti pa pred njim. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Glede na @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Polje po meri @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Polje po meri za uporabo za datum. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Ponavljajoče se @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Sprožilec se ponavlja. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Ponavljajoči se intervalni dnevi @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Sprožilec ponovite vsakih n dni. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Sprožilec za dokumente, ki ustrezajo vsem spodnjim kriterijem. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtriraj imena datotek @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Uporabi za dokumente, ki ustrezajo temu imenu datoteke. Dovoljeni so nadomestni znaki, kot sta *.pdf ali *račun*. Neobčutljivo na velikost črk. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtriraj vire @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtriraj pot @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Uporabi za dokumente, ki ustrezajo tej poti. Možna uporaba * nadomestnega znaka. Normalizirano glede na velike in male črke.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filtriraj e-poštna pravila @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Uporabi za dokumente, zajete prek tega e-poštnega pravila. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Algoritem za ujemanje vsebine @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Vzorec za ujemanje vsebine @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Napredni filtri @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Dodaj filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 Ni definiranih naprednih filtrov poteka dela. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Dokončajte konfiguracijo poizvedbe po polju po meri @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tip akcije @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Dodeli naslov @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Lahko vključuje nekaj vzorčnih vrednosti, preverite <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentacijo</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Dodeli oznake @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Dodeli pot shrambe @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Dodeli polja po meri @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Določi lastnika @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Dodeli dovoljenje za vpoglede @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Dodeli dovoljenje za urejanje @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Odstrani oznake @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Odstrani vse @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Odstrani dopisnike @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Odstrani vrste dokumentov @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Odstrani poti do shrambe @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Odstrani polja po meri @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Odstrani lastnike @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Odstrani dovoljenja @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Ogled dovoljenj @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Uredi dovoljenja @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Zadeva e-pošte @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Telo e-pošte @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Prejemniki e-pošte @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Priloži dokument @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL spletnega kavlja @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Uporabite parametre za telo spletnega kavlja @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Pošlji koristni delež spletnega kavlja kot JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parametri spletnega kavlja @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Telo spletnega kavlja @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Glave spletnega kavlja @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Vključi dokument @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Ni dodeljeno @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Odpri filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Napaka pri posodabljanju dovoljenj @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Dovoljenja so bila uspešno posodobljena @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 To dejanje bo dokončno izbrisalo vse elemente. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Elementi uspešno izbrisani @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Napaka pri brisanju elementov diff --git a/src-ui/src/locale/messages.sr_CS.xlf b/src-ui/src/locale/messages.sr_CS.xlf index dbfda8b75..4ccfd9626 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Potvrdi brisanje @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Neosetljivo na mala i velika slova @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Dodeli tip dokumenta @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Dodeli korespondenta @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Kreirajte novi korisnički nalog @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Izmeni korisnički nalog @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp je deaktiviran @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Deaktivacija Totp-a neuspešna @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Tip okidača @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Podesi zakazano odlaganje okidača i koje polje datuma koristiti. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Dani za pomeranje @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Pozitivne vrednosti će biti primenjene nakon datuma, a negativne vrednosti pre. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relativno u odnosu na @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Prilagođeno polje @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Prilagođeno polje za upotrebu datuma. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Ponavljajući @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Okidač je ponavljajući. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Interval ponavljanja u danima @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Ponavljajte okidač svakih n dana. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Pokreni za dokumenta koja se poklapaju sa svim filterima navedenim u nastavku. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtriraj ime fajla @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Primeni na dokumente koji odgovaraju ovom imenu fajla. Dozvoljeni su specijalni znakovi kao što su *.pdf ili *faktura*. Neosetljivo na velika i mala slova. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtriraj izvore @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtriraj putanju @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Primeni na dokumenta koja se poklapaju sa ovom putanjom. Specijalni znakovi * su dozvoljeni. Obrati pažnju na velika i mala slova.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filtriraj pravilo za imejl @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Primeni na dokumentima koji se obrađuju putem ovog pravila za imejl. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Algoritam za prepoznavanje sadržaja @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Obrazac za prepoznavanje sadržaja @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Napredni filteri @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Dodaj filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 Nisu definisani napredni filteri toka posla. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Dovršite konfiguraciju upita prilagođenog polja. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tip radnje @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Dodeli naslov @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Može uključivati neke placeholders, pogledaj <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>dokumentaciju</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Dodeli oznake @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Dodeli putanju skladišta @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Dodeli dodatno polje @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Dodeli vlasnika @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Dodeli dozvolu za prikaz @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Dodeli dozvolu za izmenu @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Ukloni oznake @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Ukloni sve @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Ukloni korespondente @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Ukloni tipove dokumenta @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Ukloni putanju skladištenja @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Ukloni prilagođenja polja @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Ukloni vlasnike @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Ukloni dozvole @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Pregledaj dozvole @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Izmeni dozvole @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Naslov imejla @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Telo imejla @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Primaoca imejla @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Priloži dokument @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL webhook-a @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Koristi parametre za telo webhook-a @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Pošalji payload webhook-a kao JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parametri webhook-a @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Telo webhook-a @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Zaglavlja webhook-a @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Uključi dokument @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Nije dodeljen @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Otvori filter @@ -9767,7 +9767,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Greška prilikom izmene dozvola @@ -9955,7 +9955,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Dozvole su uspešno ažurirane @@ -9963,7 +9963,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Ova operacija će trajno obrisati sve objekte. @@ -9971,7 +9971,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objekti su uspešno obrisani @@ -9979,7 +9979,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Greška prilikom brisanja objekata diff --git a/src-ui/src/locale/messages.sv_SE.xlf b/src-ui/src/locale/messages.sv_SE.xlf index ef55ca67c..5060b58d9 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Bekräfta borttagning @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Ej skiftlägeskänsligt @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Tilldela dokumenttyp @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Tilldela korrespondent @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Skapa nytt användarkonto @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Redigera användare @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Tilldela titel @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Tilldelar taggar @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Tilldela sökväg för lagring @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Tilldela anpassade fält @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Tilldela ägare @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Tilldela visningsrättigheter @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Tilldela redigeringsbehörigheter @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Ta bort taggar @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Ta bort allt @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Ta bort korrespondenter @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Ta bort dokumenttyper @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Ta bort lagringssökvägar @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Tilldela anpassade fält @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Ta bort ägare @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Ta bort behörigheter @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Visa behörigheter @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Redigera behörigheter @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Inte tilldelad @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.th_TH.xlf b/src-ui/src/locale/messages.th_TH.xlf index 1f5f76038..f6ce0c918 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 ยืนยันการลบ @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 ไม่คำนึงถึงตัวพิมพ์เล็ก-ใหญ่ @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 กำหนดประเภทเอกสาร @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 กำหนดผู้เขียน @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Create new user account @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 แก้ไขบัญชีผู้ใช้งาน @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field to use for date. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Filter mail rule @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Assign view permissions @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Assign edit permissions @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned ไม่กำหนด @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.tr_TR.xlf b/src-ui/src/locale/messages.tr_TR.xlf index 9dd81c3f1..f9e4d3011 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Silmeyi onayla @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Büyük / küçük harf duyarsız @@ -4452,7 +4452,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Dosya türü ata @@ -4472,7 +4472,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Muhatap ata @@ -4484,7 +4484,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4956,7 +4956,7 @@ tüm krite Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Yeni bir kullanıcı hesabı oluştur @@ -4964,7 +4964,7 @@ tüm krite Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Kullanıcı hesabını düzenle @@ -4972,7 +4972,7 @@ tüm krite Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Çift faktör Deaktif @@ -4980,11 +4980,11 @@ tüm krite Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Çift faktör deaktivasyon hatası @@ -5048,7 +5048,7 @@ tüm krite Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Tetiklenme tipi @@ -5056,7 +5056,7 @@ tüm krite Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Zamanlanmış tetikleyici ofsetini ve hangi tarih alanının kullanılacağını ayarlayın. @@ -5064,7 +5064,7 @@ tüm krite Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Gün ofseti @@ -5072,7 +5072,7 @@ tüm krite Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5080,7 +5080,7 @@ tüm krite Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5088,7 +5088,7 @@ tüm krite Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Özel alan @@ -5096,7 +5096,7 @@ tüm krite Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Tarih için kullanılacak özel alan. @@ -5104,7 +5104,7 @@ tüm krite Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5112,7 +5112,7 @@ tüm krite Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5120,7 +5120,7 @@ tüm krite Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5128,7 +5128,7 @@ tüm krite Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5136,7 +5136,7 @@ tüm krite Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Trigger for documents that match all filters specified below. @@ -5144,7 +5144,7 @@ tüm krite Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Dosya adı filtrele @@ -5152,7 +5152,7 @@ tüm krite Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Bu dosya adıyla eşleşen belgelere uygulayın, *.pdf veya *fatura* gibi joker karakterlere de izin verilir. Büyük/küçük harf fark etmeksizin. @@ -5160,7 +5160,7 @@ tüm krite Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5168,7 +5168,7 @@ tüm krite Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtre Yolu @@ -5176,7 +5176,7 @@ tüm krite Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> @@ -5184,7 +5184,7 @@ tüm krite Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Posta kuralı filtrele @@ -5192,7 +5192,7 @@ tüm krite Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Apply to documents consumed via this mail rule. @@ -5200,7 +5200,7 @@ tüm krite Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Content matching algorithm @@ -5208,7 +5208,7 @@ tüm krite Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Content matching pattern @@ -5216,7 +5216,7 @@ tüm krite Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5224,7 +5224,7 @@ tüm krite Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5232,7 +5232,7 @@ tüm krite No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5240,7 +5240,7 @@ tüm krite Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5248,7 +5248,7 @@ tüm krite Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5256,7 +5256,7 @@ tüm krite Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Başlık at @@ -5264,7 +5264,7 @@ tüm krite Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. @@ -5272,7 +5272,7 @@ tüm krite Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Etiketler ata @@ -5280,7 +5280,7 @@ tüm krite Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Assign storage path @@ -5288,7 +5288,7 @@ tüm krite Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Assign custom fields @@ -5296,7 +5296,7 @@ tüm krite Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Sahip Ata @@ -5304,7 +5304,7 @@ tüm krite Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Yeni görüntüleme izni ata @@ -5312,7 +5312,7 @@ tüm krite Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Yeni değiştire izni ata @@ -5320,7 +5320,7 @@ tüm krite Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5328,31 +5328,31 @@ tüm krite Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Remove all @@ -5360,7 +5360,7 @@ tüm krite Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Muhatapları kaldır @@ -5368,7 +5368,7 @@ tüm krite Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Remove document types @@ -5376,7 +5376,7 @@ tüm krite Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Remove storage paths @@ -5384,7 +5384,7 @@ tüm krite Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Remove custom fields @@ -5392,7 +5392,7 @@ tüm krite Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5400,7 +5400,7 @@ tüm krite Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5408,7 +5408,7 @@ tüm krite View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5416,7 +5416,7 @@ tüm krite Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5424,7 +5424,7 @@ tüm krite Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 E-posta konusu @@ -5432,7 +5432,7 @@ tüm krite Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 E-posta gövdesi @@ -5440,7 +5440,7 @@ tüm krite Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 E-posta alıcıları @@ -5448,7 +5448,7 @@ tüm krite Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Belge ekle @@ -5456,7 +5456,7 @@ tüm krite Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5464,7 +5464,7 @@ tüm krite Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Use parameters for webhook body @@ -5472,7 +5472,7 @@ tüm krite Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5480,7 +5480,7 @@ tüm krite Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook parametreleri @@ -5488,7 +5488,7 @@ tüm krite Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook gövdesi @@ -5496,7 +5496,7 @@ tüm krite Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook başlıkları @@ -5504,7 +5504,7 @@ tüm krite Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Belge içeriyor @@ -5860,7 +5860,7 @@ tüm krite Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Atanmadı @@ -5869,7 +5869,7 @@ tüm krite Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 filtresini aç @@ -9768,7 +9768,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Error updating permissions @@ -9956,7 +9956,7 @@ tüm krite Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Permissions updated successfully @@ -9964,7 +9964,7 @@ tüm krite This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 This operation will permanently delete all objects. @@ -9972,7 +9972,7 @@ tüm krite Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Objects deleted successfully @@ -9980,7 +9980,7 @@ tüm krite Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.uk_UA.xlf b/src-ui/src/locale/messages.uk_UA.xlf index c0139391a..7c538361e 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Підтвердьте видалення @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Нечутливий до регістру @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Призначити тип документа @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Призначити кореспондента @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Створити новий обліковий запис користувача @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Редагувати обліковий запис @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP вимкнено @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp deactivation failed @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Тип тригера @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Set scheduled trigger offset and which date field to use. @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Positive values will trigger after the date, negative values before. @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Відносно @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Користувацьке поле @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Користувацьке поле для використання дати. @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Повторюваний @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Trigger is recurring. @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Recurring interval days @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Repeat the trigger every n days. @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Тригер для документів, які збігаються усі фільтри, зазначені нижче. @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Фільтрувати назви файлів @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Обробляти лише ті документи, які повністю відповідають назві файлу, якщо вказано. Шаблони, такі як *.pdf чи *invoice* дозволені. Без врахування регістру. @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Джерела фільтрації @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Шлях фільтра @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Застосовувати до документів, які відповідають цьому шляху. Допускаються символи підставляння, позначені як *. Нормалізовано за регістром.</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Правило фільтрування пошти @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Застосувати до документів, що обслуговуються за допомогою цього правила пошти. @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Алгоритм розпізнавання вмісту @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Шаблон відповідності вмісту @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Тип дії @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Призначити назву @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Може містити деякі заповнювачі, дивись <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>документацію</a>. @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Призначити теги @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Призначити шлях до сховища @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Призначити користувацькі поля @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Призначити власника @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Призначити дозволи на перегляд @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Призначити права на редагування @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Вилучити позначки @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Видалити всі @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Видалити всіх кореспондентів @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Видалити всі типи документів @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Видалити всі шляхи зберігання @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Вилучити власне поле @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Видалити власників @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Вилучити дозволи @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Переглянути дозволи @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Редагувати дозволи @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Тема електронного листа @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Текст листа @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Одержувачі електронної пошти @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Вкласти документ @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL-адреса вебхука @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Використовувати параметри для тіла webhook @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Send webhook payload as JSON @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Параметри вебхука @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Тіло вебхука @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Заголовки веб-хуків @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Включити документ @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned Не призначено @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Відкрити фільтр @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Помилка оновлення прав доступу @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Права доступу успішно оновлено @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Ця операція остаточно видалить всі об'єкти. @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Об'єкти успішно видалені @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Помилка видалення об'єктів diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index f2ffd3f97..a0bc894e3 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -768,7 +768,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1677,19 +1677,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1715,19 +1715,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1759,11 +1759,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1895,7 +1895,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2680,11 +2680,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 Xác nhận xoá @@ -2870,7 +2870,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -3274,7 +3274,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -4627,7 +4627,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Trường hợp bình thường @@ -5209,7 +5209,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Gán loại tài liệu @@ -5233,7 +5233,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Gán biên tập viên @@ -5247,7 +5247,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -5813,7 +5813,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Tạo mới tài khoản người dùng @@ -5823,7 +5823,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Sửa tài khoản người dùng @@ -5833,7 +5833,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp đã bị vô hiệu hóa @@ -5843,11 +5843,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Hủy kích hoạt Totp không thành công @@ -5925,7 +5925,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Loại kích hoạt @@ -5935,7 +5935,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 Thiết lập khoảng thời gian kích hoạt theo lịch và trường ngày nào sẽ được sử dụng. @@ -5945,7 +5945,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Số ngày bù/trễ @@ -5955,7 +5955,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 Các giá trị dương sẽ kích hoạt sau ngày, giá trị âm trước. @@ -5965,7 +5965,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Liên quan đến @@ -5975,7 +5975,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Trường tùy chỉnh @@ -5985,7 +5985,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Trường tùy chỉnh để sử dụng cho ngày. @@ -5995,7 +5995,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Định kỳ @@ -6005,7 +6005,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Kích hoạt lặp lại. @@ -6013,7 +6013,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Số ngày lặp lại theo khoảng thời gian @@ -6023,7 +6023,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Lặp lại kích hoạt sau mỗi n ngày. @@ -6033,7 +6033,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 Kích hoạt cho các tài liệu mà Matchallfilters được chỉ định dưới đây. @@ -6043,7 +6043,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Lọc tên file @@ -6053,7 +6053,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Áp dụng cho các tài liệu khớp với tên tệp này. Cho phép sử dụng các ký tự đại diện như *.pdf hoặc *invoice*. @@ -6063,7 +6063,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Lọc nguồn @@ -6073,7 +6073,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Lọc đường dẫn @@ -6083,7 +6083,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Áp dụng cho các tài liệu phù hợp với đường dẫn này. Các ký tự đại diện được chỉ định là * được cho phép. Trường hợp chuẩn hóa. </a> @@ -6093,7 +6093,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Lọc mail rule @@ -6103,7 +6103,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Áp dụng cho các văn bản áp dụng mail rule này @@ -6113,7 +6113,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Thuật toán khớp nội dung @@ -6123,7 +6123,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Mẫu khớp nội dung @@ -6133,7 +6133,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -6141,7 +6141,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -6149,7 +6149,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 No advanced workflow filters defined. @@ -6157,7 +6157,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 Complete the custom field query configuration. @@ -6165,7 +6165,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Loại hành động @@ -6173,7 +6173,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Gán tiêu đề @@ -6183,7 +6183,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Có thể bao gồm một số người giữ chỗ, xem <a target = '_ blank' href ='https: //docs. paperless-ngx.com/usage/#workflows'> tài liệu </a>. @@ -6191,7 +6191,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Gán thẻ @@ -6201,7 +6201,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Gán đường dẫn lưu @@ -6211,7 +6211,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Gán các trường tùy chỉnh @@ -6221,7 +6221,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Gán người phụ trách @@ -6231,7 +6231,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Gán quyền xem @@ -6241,7 +6241,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Gán quyền sửa @@ -6251,7 +6251,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Xóa thẻ @@ -6261,31 +6261,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 Loại bỏ tất cả @@ -6295,7 +6295,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Loại bỏ các phóng viên @@ -6305,7 +6305,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Xóa các loại tài liệu @@ -6315,7 +6315,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Loại bỏ các đường dẫn lưu trữ @@ -6325,7 +6325,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Xóa các trường tùy chỉnh @@ -6335,7 +6335,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Loại bỏ chủ sở hữu @@ -6345,7 +6345,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Loại bỏ quyền @@ -6355,7 +6355,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Xem quyền @@ -6365,7 +6365,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Chỉnh sửa quyền @@ -6375,7 +6375,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Chủ đề email @@ -6385,7 +6385,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Cơ quan email @@ -6395,7 +6395,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Người nhận email @@ -6405,7 +6405,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Đính kèm tài liệu @@ -6415,7 +6415,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL Webhook @@ -6425,7 +6425,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Sử dụng các thông số cho cơ thể webhook @@ -6435,7 +6435,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 Gửi tải trọng webhook dưới dạng json @@ -6445,7 +6445,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -6455,7 +6455,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Cơ thể webhook @@ -6465,7 +6465,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Tiêu đề webhook @@ -6475,7 +6475,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Bao gồm tài liệu @@ -6889,7 +6889,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned @@ -6900,7 +6900,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 OpenFilter @@ -11586,7 +11586,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 Lỗi khi cập nhật quyền @@ -11796,7 +11796,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 Quyền được cập nhật thành công @@ -11806,7 +11806,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 Hoạt động này sẽ xóa vĩnh viễn tất cả các đối tượng. @@ -11816,7 +11816,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 Đối tượng đã xóa thành công @@ -11826,7 +11826,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 Lỗi xóa các đối tượng diff --git a/src-ui/src/locale/messages.zh_CN.xlf b/src-ui/src/locale/messages.zh_CN.xlf index 62d212388..072798527 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 确认删除 @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 忽略大小写 @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 分配文档类型 @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 分配联系人 @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 创建新用户 @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 编辑用户 @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp 已停用 @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 Totp 停用失败 @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 触发类型 @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 设置计划的触发器偏移量以及使用哪个日期字段。 @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 偏移天数 @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 正值将在日期之后触发,负值则在日期之前触发。 @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 相对于 @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 自定义字段 @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 自定义日期字段。 @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 定期 @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 触发器循环中。 @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 循环间隔天数 @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 每n天重复触发器。 @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 触发匹配下面指定的 所有 过滤器的文档。 @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 筛选文件名 @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 应用于匹配此文件名的文档。允许使用通配符,如 *.pdf 或 *发票*。不区分大小写。 @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 筛选源 @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 筛选路径 @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 应用于匹配此路径的文档。允许指定为*的通配符。不区分大小写。</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 筛选邮件规则 @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 应用于通过此邮件规则消费的文档。 @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 内容匹配算法 @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 内容匹配模式 @@ -5214,7 +5214,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 高级筛选 @@ -5222,7 +5222,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 添加筛选条件 @@ -5230,7 +5230,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 未定义高级工作流筛选条件。 @@ -5238,7 +5238,7 @@ Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 完成自定义字段查询配置。 @@ -5246,7 +5246,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 操作类型 @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 指定标题 @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 可以包含一些占位符,请参阅 <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>文档</a>。 @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 分配标签 @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 指定存储路径 @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 分配自定义字段 @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 分配用户 @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 分配查看权限 @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 分配编辑权限 @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 移除标签 @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 移除全部 @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 移除所有通讯员 @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 移除所有文档类型 @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 移除存储路径 @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 移除自定义字段 @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 移除所有者 @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 移除权限 @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 查看权限 @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 编辑权限 @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 邮件主题 @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 邮件正文 @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 邮件收件人 @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 附加文件 @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook 链接 @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 使用参数作为webhook负载 @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 以 JSON 格式发送网络钩子的有效负载 (webhook payload) @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook参数 @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook负载 @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook标头 @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 添加文档 @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned 未分配 @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 开启过滤 @@ -9765,7 +9765,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 更新权限时发生错误 @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 权限更新成功 @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 此操作将永久删除所有对象。 @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 对象删除成功 @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 删除对象时发生错误 diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 04851f9a3..89cc5bb01 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -646,7 +646,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 114 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html @@ -1426,19 +1426,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 276 + 278 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 295 + 297 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 362 + 364 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 381 + 383 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1462,19 +1462,19 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 284 + 286 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 303 + 305 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 370 + 372 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 389 + 391 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1502,11 +1502,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 309 + 311 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 395 + 397 src/app/components/common/input/permissions/permissions-form/permissions-form.component.html @@ -1622,7 +1622,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 113 + 115 src/app/components/common/permissions-dialog/permissions-dialog.component.html @@ -2290,11 +2290,11 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 87 + 89 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 240 + 242 src/app/components/common/permissions-select/permissions-select.component.html @@ -2426,7 +2426,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 確認刪除 @@ -2470,7 +2470,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2822,7 +2822,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3978,7 +3978,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 不區分大小寫 @@ -4450,7 +4450,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 指派文件類型 @@ -4470,7 +4470,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 指派關聯方 @@ -4482,7 +4482,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 111 + 113 src/app/components/common/system-status-dialog/system-status-dialog.component.html @@ -4954,7 +4954,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 建立新使用者帳號 @@ -4962,7 +4962,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 編輯使用者帳號 @@ -4970,7 +4970,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP 已停用 @@ -4978,11 +4978,11 @@ Totp deactivation failed src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 133 + 135 src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 138 + 140 TOTP 停用失敗 @@ -5046,7 +5046,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 觸發基準 @@ -5054,7 +5054,7 @@ Set scheduled trigger offset and which date field to use. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 123 + 125 設定排程觸發器的日期調整,以及要使用的日期欄位。 @@ -5062,7 +5062,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 調整日期 @@ -5070,7 +5070,7 @@ Positive values will trigger after the date, negative values before. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 132 + 134 正數值將於日期「之後」觸發,負數值將於日期「之前」觸發。 @@ -5078,7 +5078,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 基於 @@ -5086,7 +5086,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 自訂欄位 @@ -5094,7 +5094,7 @@ Custom field to use for date. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 用於調整日期的自訂欄位。 @@ -5102,7 +5102,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 重複執行 @@ -5110,7 +5110,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 重複執行觸發器。 @@ -5118,7 +5118,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 重複執行間隔(天) @@ -5126,7 +5126,7 @@ Repeat the trigger every n days. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 每隔 n 天重複執行觸發器。 @@ -5134,7 +5134,7 @@ Trigger for documents that match all filters specified below. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 156 + 158 對符合下列所有篩選條件的文件觸發動作。 @@ -5142,7 +5142,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 篩選檔案名稱 @@ -5150,7 +5150,7 @@ Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 套用於符合此檔案名稱的文件。可使用萬用字元,如 *.pdf 或 *invoice*。不區分大小寫。 @@ -5158,7 +5158,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 篩選來源 @@ -5166,7 +5166,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 篩選路徑 @@ -5174,7 +5174,7 @@ Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 套用於符合此路徑的文件。可使用萬用字元,如 *。大小寫已正規化。</a> @@ -5182,7 +5182,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 篩選郵件規則 @@ -5190,7 +5190,7 @@ Apply to documents consumed via this mail rule. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 套用於以此郵件規則處理的文件。 @@ -5198,7 +5198,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 內容比對演算法 @@ -5206,7 +5206,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 內容比對模式 @@ -5214,39 +5214,39 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 - Advanced Filters + 進階篩選條件 Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 - Add filter + 新增篩選條件 No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 - No advanced workflow filters defined. + 未定義進階工作流程篩選條件。 Complete the custom field query configuration. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 222,224 + 224,226 - Complete the custom field query configuration. + 完成自訂欄位查詢設定。 Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 動作類型 @@ -5254,7 +5254,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 指派標題 @@ -5262,7 +5262,7 @@ Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 可包含預留位置,詳見<a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>說明文件</a>。 @@ -5270,7 +5270,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 指派標籤 @@ -5278,7 +5278,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 指派儲存路徑 @@ -5286,7 +5286,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 指派自訂欄位 @@ -5294,7 +5294,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 指派擁有者 @@ -5302,7 +5302,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 指派檢視權限 @@ -5310,7 +5310,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 指派編輯權限 @@ -5318,7 +5318,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 移除標籤 @@ -5326,31 +5326,31 @@ Remove all src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 319 + 321 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 325 + 327 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 331 + 333 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 337 + 339 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 343 + 345 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 350 + 352 src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 356 + 358 移除全部 @@ -5358,7 +5358,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 移除關聯方 @@ -5366,7 +5366,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 移除文件類型 @@ -5374,7 +5374,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 移除儲存路徑 @@ -5382,7 +5382,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 移除自訂欄位 @@ -5390,7 +5390,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 移除擁有者 @@ -5398,7 +5398,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 移除權限 @@ -5406,7 +5406,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 檢視權限 @@ -5414,7 +5414,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 編輯權限 @@ -5422,7 +5422,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 電子郵件主旨 @@ -5430,7 +5430,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 電子郵件正文 @@ -5438,7 +5438,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 電子郵件收件者 @@ -5446,7 +5446,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 附加文件 @@ -5454,7 +5454,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook URL @@ -5462,7 +5462,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 使用 Webhook Body 的參數 @@ -5470,7 +5470,7 @@ Send webhook payload as JSON src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 419 + 421 以 JSON 傳送 Webhook Payload @@ -5478,7 +5478,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook 參數 @@ -5486,7 +5486,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook Body @@ -5494,7 +5494,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook 標頭 @@ -5502,7 +5502,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 包含文件 @@ -5620,7 +5620,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 203 - Has any of these tags + 標籤包含 Has all of these tags @@ -5628,7 +5628,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 210 - Has all of these tags + 標籤包含 Does not have these tags @@ -5636,7 +5636,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 217 - Does not have these tags + 標籤不包含 Has correspondent @@ -5652,7 +5652,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 232 - Does not have correspondents + 關聯方不包含 Has document type @@ -5668,7 +5668,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 248 - Does not have document types + 文件類型不包含 Has storage path @@ -5684,7 +5684,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 264 - Does not have storage paths + 儲存路徑不包含 Matches custom field query @@ -5692,7 +5692,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 272 - Matches custom field query + 符合自訂欄位查詢 Create new workflow @@ -5716,7 +5716,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 2,6 - {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} + {VAR_PLURAL, plural, =1 {以郵件傳送一份文件} other {以郵件傳送 份文件}} Email address(es) @@ -5768,7 +5768,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 37 - Some email servers may reject messages with large attachments. + 有些電子郵件伺服器可能會拒絕含有大型附件的郵件。 Email sent @@ -5784,7 +5784,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.ts 69 - Error emailing documents + 以電子郵件傳送文件時發生錯誤 Error emailing document @@ -5858,7 +5858,7 @@ Not assigned src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 82 + 90 Filter drop down element to filter for documents with no correspondent/type/tag assigned 未被指派的 @@ -5867,7 +5867,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 開啟 篩選器 @@ -8600,7 +8600,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 20 - 開關標籤篩選器 + 開關標籤篩選條件 Toggle correspondent filter @@ -8608,7 +8608,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 43 - 開關關聯方篩選器 + 開關關聯方篩選條件 Toggle document type filter @@ -8616,7 +8616,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 59 - 開關文件類型篩選器 + 開關文件類型篩選條件 Toggle storage path filter @@ -8624,7 +8624,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 66 - 開關儲存路徑篩選器 + 開關儲存路徑篩選條件 Select @@ -8760,7 +8760,7 @@ src/app/components/document-list/document-list.component.html 143 - (已套用篩選器) + (已套用篩選條件) Reset filters @@ -8772,7 +8772,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 107 - 重置篩選器 + 重置篩選條件 Error while loading documents @@ -8956,7 +8956,7 @@ src/app/components/document-list/document-list.component.ts 296 - 重置篩選器/選項 + 重置篩條件/選項 Open first [selected] document @@ -9766,7 +9766,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 更新權限時發生錯誤 @@ -9954,7 +9954,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 336 + 342 權限更新成功 @@ -9962,7 +9962,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 357 + 363 將永久刪除全部的項目。 @@ -9970,7 +9970,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 371 + 377 項目刪除成功 @@ -9978,7 +9978,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 377 + 383 刪除項目時發生錯誤 diff --git a/src/documents/filters.py b/src/documents/filters.py index 87274f9fa..3a8d4d327 100644 --- a/src/documents/filters.py +++ b/src/documents/filters.py @@ -92,6 +92,12 @@ class TagFilterSet(FilterSet): "name": CHAR_KWARGS, } + is_root = BooleanFilter( + label="Is root tag", + field_name="tn_parent", + lookup_expr="isnull", + ) + class DocumentTypeFilterSet(FilterSet): class Meta: diff --git a/src/documents/permissions.py b/src/documents/permissions.py index a2b165fd8..cf6a9aa35 100644 --- a/src/documents/permissions.py +++ b/src/documents/permissions.py @@ -164,6 +164,24 @@ def has_perms_owner_aware(user, perms, obj): return obj.owner is None or obj.owner == user or checker.has_perm(perms, obj) +class ViewDocumentsPermissions(BasePermission): + """ + Permissions class that checks for model permissions for only viewing Documents. + """ + + perms_map = { + "OPTIONS": ["documents.view_document"], + "GET": ["documents.view_document"], + "POST": ["documents.view_document"], + } + + def has_permission(self, request, view): + if not request.user or (not request.user.is_authenticated): # pragma: no cover + return False + + return request.user.has_perms(self.perms_map.get(request.method, [])) + + class PaperlessNotePermissions(BasePermission): """ Permissions class that checks for model permissions for Notes. diff --git a/src/documents/tests/test_api_email.py b/src/documents/tests/test_api_email.py index 0f9bd9695..884553dba 100644 --- a/src/documents/tests/test_api_email.py +++ b/src/documents/tests/test_api_email.py @@ -329,6 +329,34 @@ class TestEmail(DirectoriesMixin, SampleDirMixin, APITestCase): ) self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN) + def test_email_only_requires_view_permission(self): + """ + GIVEN: + - User having only view documents permission + WHEN: + - API request is made to bulk email documents + THEN: + - Request succeeds + """ + user1 = User.objects.create_user(username="test1") + user1.user_permissions.add(*Permission.objects.filter(codename="view_document")) + + self.client.force_authenticate(user1) + + response = self.client.post( + self.ENDPOINT, + json.dumps( + { + "documents": [self.doc1.pk], + "addresses": "test@example.com", + "subject": "Test", + "message": "Test message", + }, + ), + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + @override_settings( EMAIL_ENABLED=True, EMAIL_BACKEND="django.core.mail.backends.locmem.EmailBackend", diff --git a/src/documents/tests/test_tag_hierarchy.py b/src/documents/tests/test_tag_hierarchy.py index 708e3e534..e748225cd 100644 --- a/src/documents/tests/test_tag_hierarchy.py +++ b/src/documents/tests/test_tag_hierarchy.py @@ -229,3 +229,24 @@ class TestTagHierarchy(APITestCase): assert resp_ok.status_code in (200, 202) x.refresh_from_db() assert x.parent_pk == c.id + + def test_is_root_filter_returns_only_root_tags(self): + other_root = Tag.objects.create(name="Other parent") + + response = self.client.get( + "/api/tags/", + {"is_root": "true"}, + ) + + assert response.status_code == 200 + assert response.data["count"] == 2 + + returned_ids = {row["id"] for row in response.data["results"]} + assert self.child.pk not in returned_ids + assert self.parent.pk in returned_ids + assert other_root.pk in returned_ids + + parent_entry = next( + row for row in response.data["results"] if row["id"] == self.parent.pk + ) + assert any(child["id"] == self.child.pk for child in parent_entry["children"]) diff --git a/src/documents/views.py b/src/documents/views.py index 3b8b9931b..7a68ae78c 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -147,6 +147,7 @@ from documents.permissions import AcknowledgeTasksPermissions from documents.permissions import PaperlessAdminPermissions from documents.permissions import PaperlessNotePermissions from documents.permissions import PaperlessObjectPermissions +from documents.permissions import ViewDocumentsPermissions from documents.permissions import get_document_count_filter_for_user from documents.permissions import get_objects_for_user_owner_aware from documents.permissions import has_perms_owner_aware @@ -1252,7 +1253,12 @@ class DocumentViewSet( return Response(sorted(entries, key=lambda x: x["timestamp"], reverse=True)) - @action(methods=["post"], detail=True, url_path="email") + @action( + methods=["post"], + detail=True, + url_path="email", + permission_classes=[IsAuthenticated, ViewDocumentsPermissions], + ) # TODO: deprecated as of 2.19, remove in future release def email_document(self, request, pk=None): request_data = request.data.copy() @@ -1264,6 +1270,7 @@ class DocumentViewSet( detail=False, url_path="email", serializer_class=EmailSerializer, + permission_classes=[IsAuthenticated, ViewDocumentsPermissions], ) def email_documents(self, request, data=None): serializer = EmailSerializer(data=data or request.data) diff --git a/src/locale/af_ZA/LC_MESSAGES/django.po b/src/locale/af_ZA/LC_MESSAGES/django.po index af25f1687..2140ae0af 100644 --- a/src/locale/af_ZA/LC_MESSAGES/django.po +++ b/src/locale/af_ZA/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Afrikaans\n" "Language: af_ZA\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumente" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Waarde moet geldige JSON wees." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Ongeldige gepasmaakte veldnavraaguitdrukking" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Ongeldige uitdrukking lys. Moet nie leeg wees nie." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Ongeldige logiese uitdrukking {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "" diff --git a/src/locale/ar_AR/LC_MESSAGES/django.po b/src/locale/ar_AR/LC_MESSAGES/django.po index 784096680..705ec2f38 100644 --- a/src/locale/ar_AR/LC_MESSAGES/django.po +++ b/src/locale/ar_AR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Arabic\n" "Language: ar_SA\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "المستندات" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "يجب أن تكون القيمة JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "تجاوز الحد الأقصى لعدد شروط الاستعلام." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} حقل مخصص غير صالح." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "لم يتم العثور على حقل مخصص" diff --git a/src/locale/be_BY/LC_MESSAGES/django.po b/src/locale/be_BY/LC_MESSAGES/django.po index 8325d01c5..654debc96 100644 --- a/src/locale/be_BY/LC_MESSAGES/django.po +++ b/src/locale/be_BY/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Belarusian\n" "Language: be_BY\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Дакументы" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "" diff --git a/src/locale/bg_BG/LC_MESSAGES/django.po b/src/locale/bg_BG/LC_MESSAGES/django.po index 6d061816f..b7de8e656 100644 --- a/src/locale/bg_BG/LC_MESSAGES/django.po +++ b/src/locale/bg_BG/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Bulgarian\n" "Language: bg_BG\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Документи" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Стойността трябва да е валидна JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Невалидна заявка на персонализираното полето" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Списък с невалиден израз. Не може да е празно." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Невалиден логически оператор {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Надвишен е максимален брой за заявки." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} не е валидно персонализирано поле." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} не поддържа заявка expr {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Надвишена е максималната дълбочина на вмъкване." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Персонализирано поле не е намерено" diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index a884fcf6f..3e4c364c5 100644 --- a/src/locale/ca_ES/LC_MESSAGES/django.po +++ b/src/locale/ca_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Catalan\n" "Language: ca_ES\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documents " -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Valor ha de ser un JSON valid." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Expressió de camp de consulta invàlid" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Expressió de llista invàlida. No ha d'estar buida." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Invàlid operand lògic {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Condicions de consulta excedits." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} no és un camp personalitzat vàlid." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} no suporta expressió de consulta {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Màxima profunditat anidada excedida." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Camp personalitzat no trobat" diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po index bc7116050..05a383673 100644 --- a/src/locale/cs_CZ/LC_MESSAGES/django.po +++ b/src/locale/cs_CZ/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Czech\n" "Language: cs_CZ\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenty" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Hodnota musí být platný JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Neplatný výraz dotazu na vlastní pole" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Neplatný seznam výrazů. Nesmí být prázdný." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Neplatný logický operátor {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Překročen maximální počet podmínek dotazu." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} není platné vlastní pole." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} nepodporuje výraz dotazu {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Překročena maximální hloubka větvení." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Vlastní pole nebylo nalezeno" @@ -858,11 +858,11 @@ msgstr "má tyto štítky" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "má všechny tyto štítky" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "nemá tyto štítky" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "má tento typ dokumentu" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "nemá tyto typy dokumentů" #: documents/models.py:1102 msgid "has this correspondent" @@ -878,7 +878,7 @@ msgstr "má tohoto korespondenta" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "nemá tyto korespondenty" #: documents/models.py:1117 msgid "has this storage path" @@ -886,15 +886,15 @@ msgstr "má tuto cestu k úložišti" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "nemá tyto cesty k úložišti" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "filtrovat dotazem na vlastní pole" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "" +msgstr "Dotaz na vlastní pole zakódovaný ve formátu JSON." #: documents/models.py:1135 msgid "schedule offset days" diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po index d6f9fc0f4..06a964d01 100644 --- a/src/locale/da_DK/LC_MESSAGES/django.po +++ b/src/locale/da_DK/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Danish\n" "Language: da_DK\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenter" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Værdien skal være gyldig JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Ugyldigt tilpasset feltforespørgselsudtryk" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Ugyldig udtryksliste. Må ikke være tom." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Ugyldig logisk operatør {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Maksimalt antal forespørgselsbetingelser overskredet." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} er ikke et gyldigt tilpasset felt." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} understøtter ikke forespørgsel expr {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Maksimal indlejringsdybde overskredet." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Tilpasset felt ikke fundet" diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index 6841d256d..f452426e4 100644 --- a/src/locale/de_DE/LC_MESSAGES/django.po +++ b/src/locale/de_DE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-23 00:34\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: German\n" "Language: de_DE\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumente" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Wert muss gültiges JSON sein." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Ungültiger benutzerdefinierter Feldabfrageausdruck" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Ungültige Ausdrucksliste. Darf nicht leer sein." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Ungültiger logischer Operator {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Maximale Anzahl an Abfragebedingungen überschritten." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} ist kein gültiges benutzerdefiniertes Feld." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} unterstützt den Abfrageausdruck {expr!r} nicht." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Maximale Verschachtelungstiefe überschritten." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Benutzerdefiniertes Feld nicht gefunden" @@ -830,7 +830,7 @@ msgstr "Benutzerdefiniertes Feld" #: documents/models.py:1009 msgid "Workflow Trigger Type" -msgstr "Workflow-Auslösertyp" +msgstr "Arbeitsablauf-Auslösertyp" #: documents/models.py:1021 msgid "filter path" @@ -1166,11 +1166,11 @@ msgstr "Webhook" #: documents/models.py:1518 msgid "workflow action" -msgstr "Workflow-Aktion" +msgstr "Arbeitsablauf-Aktion" #: documents/models.py:1519 msgid "workflow actions" -msgstr "Workflow-Aktionen" +msgstr "Arbeitsablauf-Aktionen" #: documents/models.py:1528 paperless_mail/models.py:145 msgid "order" diff --git a/src/locale/el_GR/LC_MESSAGES/django.po b/src/locale/el_GR/LC_MESSAGES/django.po index cc1577fda..5d4bbef1d 100644 --- a/src/locale/el_GR/LC_MESSAGES/django.po +++ b/src/locale/el_GR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Greek\n" "Language: el_GR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Έγγραφα" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Η τιμή πρέπει να είναι σε έγκυρη μορφή JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Μη έγκυρη έκφραση προσαρμοσμένου ερωτήματος πεδίου" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Μη έγκυρη λίστα έκφρασης. Πρέπει να είναι μη κενή." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Μη έγκυρος λογικός τελεστής {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Υπέρβαση μέγιστου αριθμού συνθηκών ερωτήματος." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "Το προσαρμοσμένο πεδίο {name!r} δεν είναι ένα έγκυρο." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "Το {data_type} δεν υποστηρίζει το ερώτημα expr {expr!r}s." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Υπέρβαση μέγιστου βάθους εμφώλευσης." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Το προσαρμοσμένο πεδίο δε βρέθηκε" diff --git a/src/locale/en_US/LC_MESSAGES/django.po b/src/locale/en_US/LC_MESSAGES/django.po index 0f2d27f3f..1916bb08b 100644 --- a/src/locale/en_US/LC_MESSAGES/django.po +++ b/src/locale/en_US/LC_MESSAGES/django.po @@ -2,7 +2,7 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" "PO-Revision-Date: 2022-02-17 04:17\n" "Last-Translator: \n" "Language-Team: English\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "" diff --git a/src/locale/es_ES/LC_MESSAGES/django.po b/src/locale/es_ES/LC_MESSAGES/django.po index d3f90ea91..f90e38ca5 100644 --- a/src/locale/es_ES/LC_MESSAGES/django.po +++ b/src/locale/es_ES/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Spanish\n" "Language: es_ES\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documentos" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "El valor debe ser JSON válido." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Expresión de consulta de campo personalizado no válida" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Lista de expresiones no válida. No debe estar vacía." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Operador lógico inválido {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Se ha superado el número máximo de condiciones de consulta." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{nombre!r} no es un campo personalizado válido." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} no admite la consulta expr {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Profundidad máxima de nidificación superada." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Campo personalizado no encontrado" @@ -136,11 +136,11 @@ msgstr "etiquetas" #: documents/models.py:123 msgid "Cannot set itself as parent." -msgstr "" +msgstr "No se puede establecer a sí mismo como padre." #: documents/models.py:125 msgid "Cannot set parent to a descendant." -msgstr "" +msgstr "No se puede establecer el padre a un descendiente." #: documents/models.py:142 documents/models.py:190 msgid "document type" @@ -758,7 +758,7 @@ msgstr "Selecciona" #: documents/models.py:795 msgid "Long Text" -msgstr "" +msgstr "Texto largo" #: documents/models.py:807 msgid "data type" @@ -858,11 +858,11 @@ msgstr "tiene estas etiqueta(s)" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "tiene todas estas etiqueta(s)" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "no tiene estas etiqueta(s)" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "tiene este tipo de documento" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "no tiene estos tipos de documento (s)" #: documents/models.py:1102 msgid "has this correspondent" @@ -882,19 +882,19 @@ msgstr "" #: documents/models.py:1117 msgid "has this storage path" -msgstr "" +msgstr "tiene esta ruta de almacenamiento" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "no tiene esta(s) ruta(s) de almacenamiento" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "filtrar consulta de campo personalizado" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "" +msgstr "Expresión de consulta de campo personalizado codificado en JSON." #: documents/models.py:1135 msgid "schedule offset days" @@ -1038,7 +1038,7 @@ msgstr "asignar título" #: documents/models.py:1302 msgid "Assign a document title, must be a Jinja2 template, see documentation." -msgstr "" +msgstr "Asignar un título de documento, debe ser una plantilla de Jinja2, ver documentación." #: documents/models.py:1310 paperless_mail/models.py:274 msgid "assign this tag" @@ -1225,20 +1225,20 @@ msgstr "Tipo de fichero %(type)s no suportado" #: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" -msgstr "" +msgstr "El id del campo personalizado debe ser un entero: %(id)s" #: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" -msgstr "" +msgstr "El campo personalizado con identificador %(id)s no existe" #: documents/serialisers.py:1873 documents/serialisers.py:1883 msgid "Custom fields must be a list of integers or an object mapping ids to values." -msgstr "" +msgstr "Los campos personalizados deben ser una lista de enteros o un identificador de mapeo de objetos a valores." #: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." -msgstr "" +msgstr "Algunos campos personalizados no existen o fueron especificados dos veces." #: documents/serialisers.py:1993 msgid "Invalid variable detected." @@ -1473,21 +1473,21 @@ msgstr "Como último paso, por favor complete el siguiente formulario:" #: documents/validators.py:24 #, python-brace-format msgid "Unable to parse URI {value}, missing scheme" -msgstr "" +msgstr "No se puede analizar la URI {value}, falta el esquema" #: documents/validators.py:29 #, python-brace-format msgid "Unable to parse URI {value}, missing net location or path" -msgstr "" +msgstr "No se puede analizar la URI {value}, falta la ubicación de la red o la ruta" #: documents/validators.py:36 msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}" -msgstr "" +msgstr "El esquema URI '{parts.scheme}' no está permitido. Esquemas permitidos: {', '.join(allowed_schemes)}" #: documents/validators.py:45 #, python-brace-format msgid "Unable to parse URI {value}" -msgstr "" +msgstr "No se puede analizar la URI {value}" #: paperless/apps.py:11 msgid "Paperless" @@ -1731,7 +1731,7 @@ msgstr "Español" #: paperless/settings.py:785 msgid "Persian" -msgstr "" +msgstr "Persa" #: paperless/settings.py:786 msgid "Finnish" @@ -1815,7 +1815,7 @@ msgstr "Ucraniano" #: paperless/settings.py:806 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamita" #: paperless/settings.py:807 msgid "Chinese Simplified" diff --git a/src/locale/et_EE/LC_MESSAGES/django.po b/src/locale/et_EE/LC_MESSAGES/django.po index 22542b5c2..2fb8be57a 100644 --- a/src/locale/et_EE/LC_MESSAGES/django.po +++ b/src/locale/et_EE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Estonian\n" "Language: et_EE\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumendid" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Väärtus peab olema lubatav JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Vigane kohandatud välja päringu avaldis" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Vigane avaldiste loend. Peab olema mittetühi." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Vigane loogikaoperaator {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Päringutingimuste suurim hulk on ületatud." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} ei ole lubatud kohandatud väli." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} ei toeta päringu avaldist {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Suurim pesastamis sügavus ületatud." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Kohandatud välja ei leitud" diff --git a/src/locale/fa_IR/LC_MESSAGES/django.po b/src/locale/fa_IR/LC_MESSAGES/django.po index 4605f5eec..b77e6681f 100644 --- a/src/locale/fa_IR/LC_MESSAGES/django.po +++ b/src/locale/fa_IR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Persian\n" "Language: fa_IR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "اسناد و مدارک" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "مقدار باید JSON معتبر باشد." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Invalid custom field query expression" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "حداکثر تعداد شرایط پرس و جو از آن فراتر رفته است." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{نام! R} یک زمینه سفارشی معتبر نیست." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "زمینه سفارشی یافت نشد" diff --git a/src/locale/fi_FI/LC_MESSAGES/django.po b/src/locale/fi_FI/LC_MESSAGES/django.po index e4f6ff07a..5a2963ce5 100644 --- a/src/locale/fi_FI/LC_MESSAGES/django.po +++ b/src/locale/fi_FI/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Finnish\n" "Language: fi_FI\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Asiakirjat" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Arvon on oltava kelvollista JSON:ia." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "" diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index d5094ec7d..4ed662fe8 100644 --- a/src/locale/fr_FR/LC_MESSAGES/django.po +++ b/src/locale/fr_FR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-29 12:14\n" "Last-Translator: \n" "Language-Team: French\n" "Language: fr_FR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documents" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "La valeur doit être un JSON valide." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" -msgstr "Expression de requête personnalisée invalide" +msgstr "Requête de champ personnalisé invalide" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Liste d’expressions invalide. Doit être non vide." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Opérateur logique {op!r} invalide" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Nombre maximum de conditions de requête dépassé." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} n'est pas un champ personnalisé valide." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} ne supporte pas l'expression {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Profondeur de récursion maximale dépassée." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Champ personnalisé non trouvé" @@ -136,11 +136,11 @@ msgstr "étiquettes" #: documents/models.py:123 msgid "Cannot set itself as parent." -msgstr "" +msgstr "Impossible de se définir comme parent." #: documents/models.py:125 msgid "Cannot set parent to a descendant." -msgstr "" +msgstr "Impossible de défini un parent comme descendant." #: documents/models.py:142 documents/models.py:190 msgid "document type" @@ -862,7 +862,7 @@ msgstr "a toutes ces étiquettes" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "n'a pas ce(s) tag(s)" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "A ce type de document" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "n'a pas ce(s) type(s) de document" #: documents/models.py:1102 msgid "has this correspondent" @@ -878,7 +878,7 @@ msgstr "A ce correspondant" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "n'a pas ce(s) correspondant(s)" #: documents/models.py:1117 msgid "has this storage path" @@ -890,11 +890,11 @@ msgstr "" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "filtrer la requête de champ personnalisé" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "" +msgstr "Expression de champ personnalisé encodée en JSON." #: documents/models.py:1135 msgid "schedule offset days" @@ -1225,20 +1225,20 @@ msgstr "Type de fichier %(type)s non pris en charge" #: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" -msgstr "" +msgstr "L'id du champ personnalisé doit être un entier : %(id)s" #: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" -msgstr "" +msgstr "Le champ personnalisé avec l'id %(id)s n'existe pas" #: documents/serialisers.py:1873 documents/serialisers.py:1883 msgid "Custom fields must be a list of integers or an object mapping ids to values." -msgstr "" +msgstr "Les champs personnalisés doivent être une liste d'entiers ou un mappage d'identifiants à des valeurs." #: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." -msgstr "" +msgstr "Certains champs personnalisés n'existent pas ou ont été spécifiés deux fois." #: documents/serialisers.py:1993 msgid "Invalid variable detected." diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po index 7ffa79f34..7e3345d48 100644 --- a/src/locale/he_IL/LC_MESSAGES/django.po +++ b/src/locale/he_IL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Hebrew\n" "Language: he_IL\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "מסמכים" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "ערך מוכרך להיות JSON תקין." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "ביטוי שאילתה לא חוקי של שדה מותאם אישית" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "רשימת ביטויים לא חוקית. מוכרך לכלול ערך." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "סימן פעולה לוגית לא חוקי {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "חריגה ממספר תנאי השאילתה המרבי." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} הוא לא שדה מותאם אישית חוקי." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} לא תומך בביטוי שאילתה {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "חריגה מעומק הקינון המרבי." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "שדה מותאם אישית לא נמצא" diff --git a/src/locale/hr_HR/LC_MESSAGES/django.po b/src/locale/hr_HR/LC_MESSAGES/django.po index f8aed02a9..00d8a91eb 100644 --- a/src/locale/hr_HR/LC_MESSAGES/django.po +++ b/src/locale/hr_HR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Croatian\n" "Language: hr_HR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenti" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "" diff --git a/src/locale/hu_HU/LC_MESSAGES/django.po b/src/locale/hu_HU/LC_MESSAGES/django.po index 65a7225d0..133e28e2c 100644 --- a/src/locale/hu_HU/LC_MESSAGES/django.po +++ b/src/locale/hu_HU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Hungarian\n" "Language: hu_HU\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumentumok" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Érvényes JSON érték szükséges" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Érvénytelen egyéni mező lekérdezési kifejezés" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Érvénytelen kifejezéslista. Nem lehet üres." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Érvénytelen logikai operátor {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Maximum lekérdezési feltételszám átlépve." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nem érvényes egyéni mező." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} nem támogatja a(z) {expr!r} lekérdezési kifejezést." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Maximum beágyazási mélység túllépve." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Az egyéni mező nem található" diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po index 5cc017072..17b069cfc 100644 --- a/src/locale/id_ID/LC_MESSAGES/django.po +++ b/src/locale/id_ID/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Indonesian\n" "Language: id_ID\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumen" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Nilai harus berupa JSON yang valid." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Ekspresi pencarian bidang khusus tidak valid" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Daftar ekspresi tidak valid. Tidak boleh kosong." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Operator logika {op!r} tidak valid" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Jumlah maksimal kondisi pencarian terlampaui." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} bukan bidang khusus yang valid." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} tidak mendukung ekspresi pencarian expr {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Kedalaman susunan maksimal terlampaui." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Bidang khusus tidak ditemukan" diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po index db3a2c6ab..f968b48c3 100644 --- a/src/locale/it_IT/LC_MESSAGES/django.po +++ b/src/locale/it_IT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Italian\n" "Language: it_IT\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documenti" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Il valore deve essere un JSON valido." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Campo personalizzato della query non valido" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Elenco delle espressioni non valido. Deve essere non vuoto." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Operatore logico non valido {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Numero massimo delle condizioni della jQuery superato." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} non è un campo personalizzato valido." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} Non supporta la jQuery Expo {Expo!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Superata la profondità massima di nidificazione." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Campo personalizzato non trovato" diff --git a/src/locale/ja_JP/LC_MESSAGES/django.po b/src/locale/ja_JP/LC_MESSAGES/django.po index def408d8a..a0344e845 100644 --- a/src/locale/ja_JP/LC_MESSAGES/django.po +++ b/src/locale/ja_JP/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Japanese\n" "Language: ja_JP\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "ドキュメント" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "値は有効なJSONである必要があります。" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "無効なカスタムフィールドクエリ式" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "無効な式リストです。空であってはなりません。" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "無効な論理演算子 {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "クエリ条件の最大数を超えました。" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} は有効なカスタムフィールドではありません。" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} はクエリ expr {expr!r} をサポートしていません。" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "最大ネストの深さを超えました。" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "カスタムフィールドが見つかりません" diff --git a/src/locale/ko_KR/LC_MESSAGES/django.po b/src/locale/ko_KR/LC_MESSAGES/django.po index e798b1e7d..d04db9471 100644 --- a/src/locale/ko_KR/LC_MESSAGES/django.po +++ b/src/locale/ko_KR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Korean\n" "Language: ko_KR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "문서" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "값은 유효한 JSON이어야 합니다." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "잘못된 사용자 정의 필드 쿼리 표현식" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "잘못된 표현식 목록입니다. 비어 있지 않아야 합니다." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "잘못된 논리 연산자 {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "쿼리 조건의 최대 개수를 초과했습니다." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} 은 잘못된 사용자 정의 필드입니다." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type}은 쿼리 표현식 {expr!r}을(를) 지원하지 않습니다." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "최대 중첩 깊이를 초과했습니다." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "사용자 지정 필드를 찾을 수 없음" diff --git a/src/locale/lb_LU/LC_MESSAGES/django.po b/src/locale/lb_LU/LC_MESSAGES/django.po index 7fafd2ce1..69b0afa14 100644 --- a/src/locale/lb_LU/LC_MESSAGES/django.po +++ b/src/locale/lb_LU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Luxembourgish\n" "Language: lb_LU\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenter" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "" diff --git a/src/locale/lt_LT/LC_MESSAGES/django.po b/src/locale/lt_LT/LC_MESSAGES/django.po index c358f7b3c..9f8f64f0f 100644 --- a/src/locale/lt_LT/LC_MESSAGES/django.po +++ b/src/locale/lt_LT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Lithuanian\n" "Language: lt_LT\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumentai" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Neteisingas išraiškos sąrašas. Jis turi būti netuščias." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Neteisingas loginis operatorius {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Viršytas maksimalus užklausos sąlygų skaičius." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nėra galiojantis pasirinktas laukas." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} nepalaiko užklausos išraiškos {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Viršytas maksimalus įdėjimo gylis." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "" diff --git a/src/locale/lv_LV/LC_MESSAGES/django.po b/src/locale/lv_LV/LC_MESSAGES/django.po index e3bb51577..9ad33320a 100644 --- a/src/locale/lv_LV/LC_MESSAGES/django.po +++ b/src/locale/lv_LV/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Latvian\n" "Language: lv_LV\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokuments" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "" diff --git a/src/locale/ms_MY/LC_MESSAGES/django.po b/src/locale/ms_MY/LC_MESSAGES/django.po index 922e9fc9e..397556578 100644 --- a/src/locale/ms_MY/LC_MESSAGES/django.po +++ b/src/locale/ms_MY/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Malay\n" "Language: ms_MY\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumen" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "" diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po index 28dd3ded0..dd190fd70 100644 --- a/src/locale/nl_NL/LC_MESSAGES/django.po +++ b/src/locale/nl_NL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Dutch\n" "Language: nl_NL\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documenten" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Waarde moet een geldige JSON zijn." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} is geen geldig aangepast veld." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Aangepast veld niet gevonden" diff --git a/src/locale/no_NO/LC_MESSAGES/django.po b/src/locale/no_NO/LC_MESSAGES/django.po index 07844cdb1..b919971b1 100644 --- a/src/locale/no_NO/LC_MESSAGES/django.po +++ b/src/locale/no_NO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Norwegian\n" "Language: no_NO\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenter" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Verdien må være en gyldig JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Egendefinert felt ble ikke funnet" diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po index 91e3a3940..a8558f15c 100644 --- a/src/locale/pl_PL/LC_MESSAGES/django.po +++ b/src/locale/pl_PL/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-29 12:14\n" "Last-Translator: \n" "Language-Team: Polish\n" "Language: pl_PL\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenty" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Wartość musi być prawidłowym JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Nieprawidłowe wyrażenie zapytania pola niestandardowego" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Nieprawidłowa lista wyrażeń. Nie może być pusta." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Nieprawidłowy operator logiczny {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Maksymalna liczba warunków zapytania została przekroczona." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nie jest prawidłowym polem niestandardowym." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} nie obsługuje wyrażenia zapytania {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Przekroczono maksymalną głębokość zagnieżdżenia." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Nie znaleziono pola niestandardowego" @@ -136,11 +136,11 @@ msgstr "tagi" #: documents/models.py:123 msgid "Cannot set itself as parent." -msgstr "" +msgstr "Nie można ustawić siebie jako nadrzędnego." #: documents/models.py:125 msgid "Cannot set parent to a descendant." -msgstr "" +msgstr "Nie można ustawić nadrzędnego jako potomnego." #: documents/models.py:142 documents/models.py:190 msgid "document type" @@ -156,11 +156,11 @@ msgstr "ścieżka" #: documents/models.py:152 documents/models.py:179 msgid "storage path" -msgstr "ścieżka zapisu" +msgstr "Ścieżka zapisu" #: documents/models.py:153 msgid "storage paths" -msgstr "ścieżki zapisu" +msgstr "Ścieżki zapisu" #: documents/models.py:160 msgid "Unencrypted" @@ -204,7 +204,7 @@ msgstr "Suma kontrolna zarchiwizowanego dokumentu." #: documents/models.py:229 msgid "page count" -msgstr "liczba stron" +msgstr "Liczba stron" #: documents/models.py:236 msgid "The number of pages of the document." @@ -245,7 +245,7 @@ msgstr "Aktualna nazwa pliku archiwum w pamięci" #: documents/models.py:289 msgid "original filename" -msgstr "oryginalna nazwa pliku" +msgstr "Oryginalna nazwa pliku" #: documents/models.py:295 msgid "The original name of the file when it was uploaded" @@ -758,7 +758,7 @@ msgstr "Lista" #: documents/models.py:795 msgid "Long Text" -msgstr "" +msgstr "Pełny tekst" #: documents/models.py:807 msgid "data type" @@ -858,11 +858,11 @@ msgstr "posiada wskazane tag(i)" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "Zawiera wszystkie podane tagi" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "Nie zawiera żadnego z podanych tagów" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "posiada wskazany typ dokumentu" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "Nie posiada typów dokumentów" #: documents/models.py:1102 msgid "has this correspondent" diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po index 61bfa5125..90d431380 100644 --- a/src/locale/pt_BR/LC_MESSAGES/django.po +++ b/src/locale/pt_BR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Portuguese, Brazilian\n" "Language: pt_BR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documentos" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "O valor deve ser um JSON válido." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Expressão de consulta de campo personalizado inválida" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Lista de expressões inválida. Deve estar não vazia." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Operador lógico inválido {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Número máximo de condições de consulta excedido." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} não é um campo personalizado válido." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} não suporta a consulta expr {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Profundidade máxima do aninhamento excedida." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Campo personalizado não encontrado" diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po index d6fb4c833..1b2a96905 100644 --- a/src/locale/pt_PT/LC_MESSAGES/django.po +++ b/src/locale/pt_PT/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Portuguese\n" "Language: pt_PT\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documentos" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "O valor deve ser JSON válido." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Expressão de consulta de campo personalizado inválido" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Lista de expressões inválida. Não deve estar vazia." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Operador lógico inválido {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "O número máximo de condições de consulta foi excedido." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} não é um campo personalizado válido." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} não aceita a expressão de consulta {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Campo personalizado não encontrado" diff --git a/src/locale/ro_RO/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po index 5e09d9f60..9d95d6e19 100644 --- a/src/locale/ro_RO/LC_MESSAGES/django.po +++ b/src/locale/ro_RO/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Romanian\n" "Language: ro_RO\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Documente" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "" diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po index 0ed465101..dc90bc519 100644 --- a/src/locale/ru_RU/LC_MESSAGES/django.po +++ b/src/locale/ru_RU/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Russian\n" "Language: ru_RU\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Документы" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Значение должно быть корректным JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Неверное выражение запроса пользовательского поля" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Недопустимый список выражений. Не может быть пустым." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Недопустимый логический оператор {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Превышено максимальное количество условий запроса." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} не является допустимым пользовательским полем." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} не поддерживает запрос {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Превышена максимальная глубина вложения." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Пользовательское поле не найдено" diff --git a/src/locale/sk_SK/LC_MESSAGES/django.po b/src/locale/sk_SK/LC_MESSAGES/django.po index 4e273c8bd..3a711b572 100644 --- a/src/locale/sk_SK/LC_MESSAGES/django.po +++ b/src/locale/sk_SK/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Slovak\n" "Language: sk_SK\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenty" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Hodnota musí byť vo validnom formáte JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Neplatný výraz požiadavky na vlastné pole" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Neplatný zoznam výrazov. Nesmie byť prázdny." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Neplatný logický operátor {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Prekročili ste maximálny počet podmienok požiadavky." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nie je platné vlastné pole." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} nepodporuje výraz požiadavky {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Bola prekročená maximálna hĺbka vetvenia." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Vlastné pole nebolo nájdené" diff --git a/src/locale/sl_SI/LC_MESSAGES/django.po b/src/locale/sl_SI/LC_MESSAGES/django.po index 69f6183f8..497771b8a 100644 --- a/src/locale/sl_SI/LC_MESSAGES/django.po +++ b/src/locale/sl_SI/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Slovenian\n" "Language: sl_SI\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenti" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Vrednost mora biti veljaven JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Neveljaven izraz poizvedbe po polju po meri" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Neveljaven seznam izrazov. Ne sme biti prazen." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Neveljaven logični operator {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Preseženo je bilo največje dovoljeno število pogojev poizvedbe." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} ni veljavno polje po meri." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} ne podpira izraza poizvedbe {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Presežena je bila največja globina gnezdenja." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Polja po meri ni bilo mogoče najti" diff --git a/src/locale/sr_CS/LC_MESSAGES/django.po b/src/locale/sr_CS/LC_MESSAGES/django.po index 8255b4f0e..7ada34e65 100644 --- a/src/locale/sr_CS/LC_MESSAGES/django.po +++ b/src/locale/sr_CS/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Serbian (Latin)\n" "Language: sr_CS\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokumenta" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Vrednost mora da bude važeći JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Nevažeći izraz upita prilagođen polja" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Nevažeća lista izraza. Ne sme biti prazna." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Nevažeći logični operator {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Premašen je maksimalni broj uslova u upitu." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nije validno prilagođeno polje." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} ne podržava izraz u upitu {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Premašena je maksimalna dubina grananja." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Nije pronađeno prilagođeno polje" diff --git a/src/locale/sv_SE/LC_MESSAGES/django.po b/src/locale/sv_SE/LC_MESSAGES/django.po index dd7fbf58b..d5dc8a029 100644 --- a/src/locale/sv_SE/LC_MESSAGES/django.po +++ b/src/locale/sv_SE/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Swedish\n" "Language: sv_SE\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Dokument" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Värdet måste vara giltigt JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Ogiltigt sökordsuttryck för anpassade fält" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Ogiltig uttryckslista. Får inte vara tom." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Ogiltig logisk operator {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Maximalt antal frågevillkor överskrids." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} är inte ett giltigt anpassat fält." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} stöder inte frågan expr {expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Maximalt antal nästlade nivåer överskrids." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Anpassat fält hittades inte" diff --git a/src/locale/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po index 84aed6222..921a97ab7 100644 --- a/src/locale/th_TH/LC_MESSAGES/django.po +++ b/src/locale/th_TH/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Thai\n" "Language: th_TH\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "เอกสาร" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "ค่า ต้องอยู่ในรูปแบบ JSON ที่ถูกต้อง" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "รูปแบบการค้นหาฟิลด์ที่กำหนดเองไม่ถูกต้อง" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "รายการคำสั่งไม่ถูกต้อง ต้องไม่เว้นว่าง" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "ตัวดำเนินการเชิงตรรกะ {op!r} ไม่ถูกต้อง" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "จำนวนเงื่อนไขในการค้นหาเกินกำหนด" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} ไม่ใช่ฟิลด์ที่กำหนดเองที่ถูกต้อง" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} ไม่รองรับรูปแบบการค้นหา {expr!r}" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "จำนวนการซ้อนเงื่อนไขสูงสุดเกินขีดจำกัด" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "ไม่พบฟิลด์ที่กำหนด" diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po index 7700f2927..45d232824 100644 --- a/src/locale/tr_TR/LC_MESSAGES/django.po +++ b/src/locale/tr_TR/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Turkish\n" "Language: tr_TR\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Belgeler" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Değer geçerli bir JSON olmalıdır." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Geçersiz özel alan sorgu ifadesi" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Geçersiz ifade listesi. Boş olmamalıdır." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Geçersiz mantıksal işleç {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "En çok sorgu koşulu sayısı aşıldı." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} geçerli bir özel alan değil." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type}, {expr!r} sorgu ifadesini desteklemiyor." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "En çok iç içe geçme izni aşıldı." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Özel alan bulunamadı" diff --git a/src/locale/uk_UA/LC_MESSAGES/django.po b/src/locale/uk_UA/LC_MESSAGES/django.po index 28ab14c76..1f3098872 100644 --- a/src/locale/uk_UA/LC_MESSAGES/django.po +++ b/src/locale/uk_UA/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-23 12:14\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Ukrainian\n" "Language: uk_UA\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Документи" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Значення має бути коректним JSON." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "" diff --git a/src/locale/vi_VN/LC_MESSAGES/django.po b/src/locale/vi_VN/LC_MESSAGES/django.po index b545e9a4d..23f3a8cf5 100644 --- a/src/locale/vi_VN/LC_MESSAGES/django.po +++ b/src/locale/vi_VN/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:08\n" "Last-Translator: \n" "Language-Team: Vietnamese\n" "Language: vi_VN\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "Tài liệu" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "Giá trị phải là JSON hợp lệ." -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "Biểu thức truy vấn trường tùy chỉnh không hợp lệ" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "Danh sách biểu thức không hợp lệ. Phải không rỗng." -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "Toán tử lô-gic không hợp lệ {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "Đã vượt quá số điều kiện truy vấn tối đa." -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} không phải là trường tùy chỉnh hợp lệ." -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} không hỗ trợ expr truy vấn{expr!r}." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Đã vượt quá độ sâu lồng nhau tối đa." -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Không tìm thấy trường tùy chỉnh" diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po index 330487011..d44c031ef 100644 --- a/src/locale/zh_CN/LC_MESSAGES/django.po +++ b/src/locale/zh_CN/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Chinese Simplified\n" "Language: zh_CN\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "文档" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "值必须是有效的 JSON 格式。" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "无效的自定义字段查询表达式" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "无效的表达式列表。必须不为空。" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "无效的逻辑运算符 {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "超出查询条件的最大数量。" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} 不是一个有效的自定义字段。" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} 不支持查询表达式 {expr!r}。" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "超出最大嵌套深度。" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "Custom field not found" diff --git a/src/locale/zh_TW/LC_MESSAGES/django.po b/src/locale/zh_TW/LC_MESSAGES/django.po index c32ae563c..82b5e9f00 100644 --- a/src/locale/zh_TW/LC_MESSAGES/django.po +++ b/src/locale/zh_TW/LC_MESSAGES/django.po @@ -2,8 +2,8 @@ msgid "" msgstr "" "Project-Id-Version: paperless-ngx\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2025-10-22 18:15+0000\n" -"PO-Revision-Date: 2025-10-22 18:18\n" +"POT-Creation-Date: 2025-10-28 18:06+0000\n" +"PO-Revision-Date: 2025-10-28 18:07\n" "Last-Translator: \n" "Language-Team: Chinese Traditional\n" "Language: zh_TW\n" @@ -21,39 +21,39 @@ msgstr "" msgid "Documents" msgstr "文件" -#: documents/filters.py:386 +#: documents/filters.py:392 msgid "Value must be valid JSON." msgstr "參數值必須是有效的 JSON。" -#: documents/filters.py:405 +#: documents/filters.py:411 msgid "Invalid custom field query expression" msgstr "無效的自訂欄位查詢表達式" -#: documents/filters.py:415 +#: documents/filters.py:421 msgid "Invalid expression list. Must be nonempty." msgstr "無效的表達式列表,不能為空。" -#: documents/filters.py:436 +#: documents/filters.py:442 msgid "Invalid logical operator {op!r}" msgstr "無效的邏輯運算符 {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:456 msgid "Maximum number of query conditions exceeded." msgstr "超過查詢條件的最大數量。" -#: documents/filters.py:515 +#: documents/filters.py:521 msgid "{name!r} is not a valid custom field." msgstr "{name!r} 不是有效的自訂欄位。" -#: documents/filters.py:552 +#: documents/filters.py:558 msgid "{data_type} does not support query expr {expr!r}." msgstr "{data_type} 不支援查詢表達式 {expr!r}。" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:666 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "超過最大巢狀深度。" -#: documents/filters.py:845 +#: documents/filters.py:851 msgid "Custom field not found" msgstr "找不到自訂欄位" @@ -858,11 +858,11 @@ msgstr "具有這些標籤" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "標籤符合" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "標籤不包含" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "具有此文件類型" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "文件類型不包含" #: documents/models.py:1102 msgid "has this correspondent" @@ -878,7 +878,7 @@ msgstr "具有此關聯方" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "關聯方不包含" #: documents/models.py:1117 msgid "has this storage path" @@ -886,15 +886,15 @@ msgstr "使用此儲存路徑" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "儲存路徑不包含" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "篩選自訂欄位查詢" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "" +msgstr "JSON-encoded 的自訂欄位查詢表達式。" #: documents/models.py:1135 msgid "schedule offset days" diff --git a/src/paperless/version.py b/src/paperless/version.py index 4eae46a66..e522208a2 100644 --- a/src/paperless/version.py +++ b/src/paperless/version.py @@ -1,6 +1,6 @@ from typing import Final -__version__: Final[tuple[int, int, int]] = (2, 19, 2) +__version__: Final[tuple[int, int, int]] = (2, 19, 3) # Version string like X.Y.Z __full_version_str__: Final[str] = ".".join(map(str, __version__)) # Version string like X.Y diff --git a/uv.lock b/uv.lock index 9644fa2e9..a1f6d75c8 100644 --- a/uv.lock +++ b/uv.lock @@ -829,15 +829,15 @@ wheels = [ [[package]] name = "django" -version = "5.2.6" +version = "5.2.7" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "asgiref", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, { name = "sqlparse", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/4c/8c/2a21594337250a171d45dda926caa96309d5136becd1f48017247f9cdea0/django-5.2.6.tar.gz", hash = "sha256:da5e00372763193d73cecbf71084a3848458cecf4cee36b9a1e8d318d114a87b", size = 10858861, upload-time = "2025-09-03T13:04:03.23Z" } +sdist = { url = "https://files.pythonhosted.org/packages/b1/96/bd84e2bb997994de8bcda47ae4560991084e86536541d7214393880f01a8/django-5.2.7.tar.gz", hash = "sha256:e0f6f12e2551b1716a95a63a1366ca91bbcd7be059862c1b18f989b1da356cdd", size = 10865812, upload-time = "2025-10-01T14:22:12.081Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/f5/af/6593f6d21404e842007b40fdeb81e73c20b6649b82d020bb0801b270174c/django-5.2.6-py3-none-any.whl", hash = "sha256:60549579b1174a304b77e24a93d8d9fafe6b6c03ac16311f3e25918ea5a20058", size = 8303111, upload-time = "2025-09-03T13:03:47.808Z" }, + { url = "https://files.pythonhosted.org/packages/8f/ef/81f3372b5dd35d8d354321155d1a38894b2b766f576d0abffac4d8ae78d9/django-5.2.7-py3-none-any.whl", hash = "sha256:59a13a6515f787dec9d97a0438cd2efac78c8aca1c80025244b0fe507fe0754b", size = 8307145, upload-time = "2025-10-01T14:22:49.476Z" }, ] [[package]] @@ -2924,7 +2924,7 @@ wheels = [ [[package]] name = "paperless-ngx" -version = "2.19.2" +version = "2.19.3" source = { virtual = "." } dependencies = [ { name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, @@ -3080,7 +3080,7 @@ requires-dist = [ { name = "concurrent-log-handler", specifier = "~=0.9.25" }, { name = "dateparser", specifier = "~=1.2" }, { name = "django", specifier = "~=5.2.5" }, - { name = "django-allauth", extras = ["socialaccount", "mfa"], specifier = "~=65.4.0" }, + { name = "django-allauth", extras = ["mfa", "socialaccount"], specifier = "~=65.4.0" }, { name = "django-auditlog", specifier = "~=3.2.1" }, { name = "django-cachalot", specifier = "~=2.8.0" }, { name = "django-celery-results", specifier = "~=2.6.0" },