diff --git a/.github/DISCUSSION_TEMPLATE/support.yml b/.github/DISCUSSION_TEMPLATE/support.yml index 18c0812f2..311aaf7f3 100644 --- a/.github/DISCUSSION_TEMPLATE/support.yml +++ b/.github/DISCUSSION_TEMPLATE/support.yml @@ -51,5 +51,5 @@ body: id: logs attributes: label: Relevant logs or output - description: If you have logs, errors that might help, paste it here. + description: If you have logs, errors that might help, paste it here. For example other containers or services (database, redis, etc). render: bash diff --git a/.github/ISSUE_TEMPLATE/bug-report.yml b/.github/ISSUE_TEMPLATE/bug-report.yml index 07e9e4690..b6baf49bf 100644 --- a/.github/ISSUE_TEMPLATE/bug-report.yml +++ b/.github/ISSUE_TEMPLATE/bug-report.yml @@ -6,8 +6,8 @@ body: - type: markdown attributes: value: | - ### ⚠️ Please remember: issues are for *bugs* - That is, something you believe affects every single user of Paperless-ngx, not just you. If you're not sure, start with one of the other options below. + ### ⚠️ Please remember: issues are for *bugs* only! ⚠️ + That is, something you believe affects every single user of Paperless-ngx (and the demo, for example), not just you. If you are not sure, start with one of the other options below. Also, note that **Paperless-ngx does not perform OCR or archive file creation itself**, those are handled by other tools. Problems with OCR or archive versions of specific files should likely be raised 'upstream', see https://github.com/ocrmypdf/OCRmyPDF/issues or https://github.com/tesseract-ocr/tesseract/issues - type: markdown @@ -59,6 +59,12 @@ body: label: Browser logs description: Logs from the web browser related to your issue, if needed render: bash + - type: textarea + id: logs_services + attributes: + label: Services logs + description: Logs from other services (or containers) related to your issue, if needed. For example, the database or redis logs. + render: bash - type: input id: version attributes: diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 91996b4d0..c67758bf6 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -35,8 +35,8 @@ NOTE: PRs that do not address the following will not be merged, please do not sk - [ ] I have read & agree with the [contributing guidelines](https://github.com/paperless-ngx/paperless-ngx/blob/main/CONTRIBUTING.md). - [ ] If applicable, I have included testing coverage for new code in this PR, for [backend](https://docs.paperless-ngx.com/development/#testing) and / or [front-end](https://docs.paperless-ngx.com/development/#testing-and-code-style) changes. -- [ ] If applicable, I have tested my code for new features & regressions on both mobile & desktop devices, using the latest version of major browsers. +- [ ] If applicable, I have tested my code for breaking changes & regressions on both mobile & desktop devices, using the latest version of major browsers. - [ ] If applicable, I have checked that all tests pass, see [documentation](https://docs.paperless-ngx.com/development/#back-end-development). - [ ] I have run all `pre-commit` hooks, see [documentation](https://docs.paperless-ngx.com/development/#code-formatting-with-pre-commit-hooks). - [ ] I have made corresponding changes to the documentation as needed. -- [ ] I have checked my modifications for any breaking changes. +- [ ] In the description of the PR above I have disclosed the use of AI tools in the coding of this PR. diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a560c506e..17e9a4109 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -181,10 +181,11 @@ jobs: pytest - name: Upload backend test results to Codecov if: always() - uses: codecov/test-results-action@v1 + uses: codecov/codecov-action@v5 with: flags: backend-python-${{ matrix.python-version }} files: junit.xml + report_type: test_results - name: Upload backend coverage to Codecov uses: codecov/codecov-action@v5 with: @@ -260,11 +261,12 @@ jobs: - name: Run Jest unit tests run: cd src-ui && pnpm run test --max-workers=2 --shard=${{ matrix.shard-index }}/${{ matrix.shard-count }} - name: Upload frontend test results to Codecov - uses: codecov/test-results-action@v1 if: always() + uses: codecov/codecov-action@v5 with: flags: frontend-node-${{ matrix.node-version }} directory: src-ui/ + report_type: test_results - name: Upload frontend coverage to Codecov uses: codecov/codecov-action@v5 with: diff --git a/Dockerfile b/Dockerfile index aeab828b9..49423d98a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -32,7 +32,7 @@ RUN set -eux \ # Purpose: Installs s6-overlay and rootfs # Comments: # - Don't leave anything extra in here either -FROM ghcr.io/astral-sh/uv:0.9.4-python3.12-bookworm-slim AS s6-overlay-base +FROM ghcr.io/astral-sh/uv:0.9.9-python3.12-bookworm-slim AS s6-overlay-base WORKDIR /usr/src/s6 diff --git a/docs/changelog.md b/docs/changelog.md index 5c82a09fc..7abea13d4 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,5 +1,167 @@ # Changelog +## paperless-ngx 2.19.6 + +### Bug Fixes + +- Chore: include password validation on user edit [@shamoon](https://github.com/shamoon) ([#11308](https://github.com/paperless-ngx/paperless-ngx/pull/11308)) +- Fix: include BASE_URL when constructing for workflows [@ebardsley](https://github.com/ebardsley) ([#11360](https://github.com/paperless-ngx/paperless-ngx/pull/11360)) +- Fixhancement: refactor email attachment logic [@shamoon](https://github.com/shamoon) ([#11336](https://github.com/paperless-ngx/paperless-ngx/pull/11336)) +- Fixhancement: trim whitespace for some text searches [@shamoon](https://github.com/shamoon) ([#11357](https://github.com/paperless-ngx/paperless-ngx/pull/11357)) +- Fix: update Outlook refresh token when refreshed [@shamoon](https://github.com/shamoon) ([#11341](https://github.com/paperless-ngx/paperless-ngx/pull/11341)) +- Fix: only cache remote version data for version checking [@shamoon](https://github.com/shamoon) ([#11320](https://github.com/paperless-ngx/paperless-ngx/pull/11320)) +- Fix: include replace none logic in storage path preview, improve jinja conditionals for empty metadata [@shamoon](https://github.com/shamoon) ([#11315](https://github.com/paperless-ngx/paperless-ngx/pull/11315)) + +### Dependencies + +- docker(deps): bump astral-sh/uv from 0.9.7-python3.12-bookworm-slim to 0.9.9-python3.12-bookworm-slim @[dependabot[bot]](https://github.com/apps/dependabot) ([#11338](https://github.com/paperless-ngx/paperless-ngx/pull/11338)) + +### All App Changes + +
+7 changes + +- Fix: include BASE_URL when constructing for workflows [@ebardsley](https://github.com/ebardsley) ([#11360](https://github.com/paperless-ngx/paperless-ngx/pull/11360)) +- Fixhancement: refactor email attachment logic [@shamoon](https://github.com/shamoon) ([#11336](https://github.com/paperless-ngx/paperless-ngx/pull/11336)) +- Fixhancement: trim whitespace for some text searches [@shamoon](https://github.com/shamoon) ([#11357](https://github.com/paperless-ngx/paperless-ngx/pull/11357)) +- Fix: update Outlook refresh token when refreshed [@shamoon](https://github.com/shamoon) ([#11341](https://github.com/paperless-ngx/paperless-ngx/pull/11341)) +- Fix: only cache remote version data for version checking [@shamoon](https://github.com/shamoon) ([#11320](https://github.com/paperless-ngx/paperless-ngx/pull/11320)) +- Fix: include replace none logic in storage path preview, improve jinja conditionals for empty metadata [@shamoon](https://github.com/shamoon) ([#11315](https://github.com/paperless-ngx/paperless-ngx/pull/11315)) +- Chore: include password validation on user edit [@shamoon](https://github.com/shamoon) ([#11308](https://github.com/paperless-ngx/paperless-ngx/pull/11308)) +
+ +## paperless-ngx 2.19.5 + +### Bug Fixes + +- Fix: ensure custom field query propagation, change detection [@shamoon](https://github.com/shamoon) ([#11291](https://github.com/paperless-ngx/paperless-ngx/pull/11291)) + +### Dependencies + +- docker(deps): Bump astral-sh/uv from 0.9.4-python3.12-bookworm-slim to 0.9.7-python3.12-bookworm-slim @[dependabot[bot]](https://github.com/apps/dependabot) ([#11283](https://github.com/paperless-ngx/paperless-ngx/pull/11283)) + +### All App Changes + +- Fix: ensure custom field query propagation, change detection [@shamoon](https://github.com/shamoon) ([#11291](https://github.com/paperless-ngx/paperless-ngx/pull/11291)) + +## paperless-ngx 2.19.4 + +### Bug Fixes + +- Fix: use original_file when attaching docs to workflow emails with added trigger [@shamoon](https://github.com/shamoon) ([#11266](https://github.com/paperless-ngx/paperless-ngx/pull/11266)) +- Fix: mark 'Select' button in doc list for translation [@shamoon](https://github.com/shamoon) ([#11278](https://github.com/paperless-ngx/paperless-ngx/pull/11278)) +- Fix: respect fields parameter for created field [@shamoon](https://github.com/shamoon) ([#11251](https://github.com/paperless-ngx/paperless-ngx/pull/11251)) +- Fix: improve legibility of processed mail error popover in light mode [@shamoon](https://github.com/shamoon) ([#11258](https://github.com/paperless-ngx/paperless-ngx/pull/11258)) +- Fixhancement: truncate large logs, improve auto-scroll [@shamoon](https://github.com/shamoon) ([#11239](https://github.com/paperless-ngx/paperless-ngx/pull/11239)) +- Chore: add max-height and overflow to processedmail error popover [@shamoon](https://github.com/shamoon) ([#11252](https://github.com/paperless-ngx/paperless-ngx/pull/11252)) +- Fix: delay iframe DOM removal, handle onafterprint error for print in FF [@shamoon](https://github.com/shamoon) ([#11237](https://github.com/paperless-ngx/paperless-ngx/pull/11237)) +- Fix: de-deduplicate children in tag list when filtering [@shamoon](https://github.com/shamoon) ([#11229](https://github.com/paperless-ngx/paperless-ngx/pull/11229)) + +### Performance + +- Performance: re-enable virtual scroll, bump ng-select [@shamoon](https://github.com/shamoon) ([#11279](https://github.com/paperless-ngx/paperless-ngx/pull/11279)) +- Performance: use virtual scroll container and log level parsing for logs view [@MickLesk](https://github.com/MickLesk) ([#11233](https://github.com/paperless-ngx/paperless-ngx/pull/11233)) + +### All App Changes + +
+11 changes + +- Performance: re-enable virtual scroll, bump ng-select [@shamoon](https://github.com/shamoon) ([#11279](https://github.com/paperless-ngx/paperless-ngx/pull/11279)) +- Fix: use original_file when attaching docs to workflow emails with added trigger [@shamoon](https://github.com/shamoon) ([#11266](https://github.com/paperless-ngx/paperless-ngx/pull/11266)) +- Fix: mark 'Select' button in doc list for translation [@shamoon](https://github.com/shamoon) ([#11278](https://github.com/paperless-ngx/paperless-ngx/pull/11278)) +- Fix: respect fields parameter for created field [@shamoon](https://github.com/shamoon) ([#11251](https://github.com/paperless-ngx/paperless-ngx/pull/11251)) +- Fix: improve legibility of processed mail error popover in light mode [@shamoon](https://github.com/shamoon) ([#11258](https://github.com/paperless-ngx/paperless-ngx/pull/11258)) +- Fixhancement: truncate large logs, improve auto-scroll [@shamoon](https://github.com/shamoon) ([#11239](https://github.com/paperless-ngx/paperless-ngx/pull/11239)) +- Chore: add max-height and overflow to processedmail error popover [@shamoon](https://github.com/shamoon) ([#11252](https://github.com/paperless-ngx/paperless-ngx/pull/11252)) +- Fix: delay iframe DOM removal, handle onafterprint error for print in FF [@shamoon](https://github.com/shamoon) ([#11237](https://github.com/paperless-ngx/paperless-ngx/pull/11237)) +- Performance: use virtual scroll container and log level parsing for logs view [@MickLesk](https://github.com/MickLesk) ([#11233](https://github.com/paperless-ngx/paperless-ngx/pull/11233)) +- Chore: cache Github version check for 15 minutes [@shamoon](https://github.com/shamoon) ([#11235](https://github.com/paperless-ngx/paperless-ngx/pull/11235)) +- Fix: de-deduplicate children in tag list when filtering [@shamoon](https://github.com/shamoon) ([#11229](https://github.com/paperless-ngx/paperless-ngx/pull/11229)) +
+ +## 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 + +- Fix: skip workflow title migration for empty titles [@shamoon](https://github.com/shamoon) ([#11136](https://github.com/paperless-ngx/paperless-ngx/pull/11136)) +- Fix: restore workflow title migration [@shamoon](https://github.com/shamoon) ([#11131](https://github.com/paperless-ngx/paperless-ngx/pull/11131)) +- Fix: retrieve document_count for tag children [@shamoon](https://github.com/shamoon) ([#11125](https://github.com/paperless-ngx/paperless-ngx/pull/11125)) +- Fix: move hierarchical order logic in dropdown sorting [@shamoon](https://github.com/shamoon) ([#11128](https://github.com/paperless-ngx/paperless-ngx/pull/11128)) +- Fix: use original object for children in tag list [@shamoon](https://github.com/shamoon) ([#11127](https://github.com/paperless-ngx/paperless-ngx/pull/11127)) +- Fix: dont display or fetch users or groups with insufficient perms [@shamoon](https://github.com/shamoon) ([#11111](https://github.com/paperless-ngx/paperless-ngx/pull/11111)) + +### All App Changes + +
+6 changes + +- Fix: skip workflow title migration for empty titles [@shamoon](https://github.com/shamoon) ([#11136](https://github.com/paperless-ngx/paperless-ngx/pull/11136)) +- Fix: restore workflow title migration [@shamoon](https://github.com/shamoon) ([#11131](https://github.com/paperless-ngx/paperless-ngx/pull/11131)) +- Fix: retrieve document_count for tag children [@shamoon](https://github.com/shamoon) ([#11125](https://github.com/paperless-ngx/paperless-ngx/pull/11125)) +- Fix: move hierarchical order logic in dropdown sorting [@shamoon](https://github.com/shamoon) ([#11128](https://github.com/paperless-ngx/paperless-ngx/pull/11128)) +- Fix: use original object for children in tag list [@shamoon](https://github.com/shamoon) ([#11127](https://github.com/paperless-ngx/paperless-ngx/pull/11127)) +- Fix: dont display or fetch users or groups with insufficient perms [@shamoon](https://github.com/shamoon) ([#11111](https://github.com/paperless-ngx/paperless-ngx/pull/11111)) +
+ ## paperless-ngx 2.19.0 ### Notable Changes diff --git a/docs/setup.md b/docs/setup.md index f239e5429..3e7ac1be3 100644 --- a/docs/setup.md +++ b/docs/setup.md @@ -326,7 +326,7 @@ are released, dependency support is confirmed, etc. !!! warning - Ensure your Redis instance [is secured](https://redis.io/docs/getting-started/#securing-redis). + Ensure your Redis instance [is secured](https://redis.io/docs/latest/operate/oss_and_stack/management/security/). 7. Create the following directories if they are missing: diff --git a/docs/usage.md b/docs/usage.md index d902f6814..cac2c964f 100644 --- a/docs/usage.md +++ b/docs/usage.md @@ -553,6 +553,7 @@ applied. You can use the following placeholders in the template with any trigger - `{{added_time}}`: added time in HH:MM format - `{{original_filename}}`: original file name without extension - `{{filename}}`: current file name without extension +- `{{doc_title}}`: current document title The following placeholders are only available for "added" or "updated" triggers 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 177a92282..8c54ce8ae 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "paperless-ngx" -version = "2.19.0" +version = "2.19.6" 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 addcdfe5c..13deb8a89 100644 --- a/src-ui/messages.xlf +++ b/src-ui/messages.xlf @@ -297,11 +297,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -316,11 +316,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -363,11 +363,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 @@ -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 @@ -658,11 +658,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 @@ -672,11 +672,33 @@ 4 + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -687,11 +709,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1003,11 +1025,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1299,19 +1321,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 +1356,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 +1394,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 +1506,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 @@ -1572,7 +1594,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 @@ -1583,11 +1605,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 @@ -1999,11 +2021,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 @@ -2107,11 +2129,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 @@ -2127,7 +2149,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2241,7 +2263,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 362 @@ -2283,7 +2305,7 @@ src/app/components/manage/management-list/management-list.component.ts - 358 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2368,11 +2390,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 @@ -2535,7 +2557,7 @@ src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 @@ -2610,7 +2632,7 @@ src/app/components/manage/management-list/management-list.component.ts - 360 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2709,58 +2731,58 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -2771,11 +2793,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -2806,11 +2828,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -2821,11 +2843,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -2836,11 +2858,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -2855,11 +2877,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -2870,92 +2892,92 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 @@ -3019,7 +3041,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3399,11 +3421,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3414,29 +3436,29 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3447,7 +3469,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3474,21 +3496,21 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 @@ -3669,7 +3691,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 @@ -4086,7 +4108,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 @@ -4104,7 +4126,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 @@ -4115,7 +4137,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 @@ -4441,7 +4463,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 @@ -4539,32 +4561,32 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 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 @@ -4621,409 +4643,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 +5360,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 +5368,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 @@ -5422,7 +5444,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -5545,11 +5567,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6022,71 +6044,71 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 @@ -7259,25 +7281,25 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 @@ -7385,28 +7407,28 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 @@ -7866,6 +7888,13 @@ 308 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + None @@ -7881,17 +7910,6 @@ 45 - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Sort @@ -8843,7 +8861,7 @@ src/app/components/manage/management-list/management-list.component.ts - 343 + 349 @@ -9014,28 +9032,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 39713981e..339b378c2 100644 --- a/src-ui/package.json +++ b/src-ui/package.json @@ -1,6 +1,6 @@ { "name": "paperless-ngx-ui", - "version": "2.19.0", + "version": "2.19.6", "scripts": { "preinstall": "npx only-allow pnpm", "ng": "ng", @@ -21,7 +21,7 @@ "@angular/platform-browser-dynamic": "~20.3.2", "@angular/router": "~20.3.2", "@ng-bootstrap/ng-bootstrap": "^19.0.1", - "@ng-select/ng-select": "^20.2.2", + "@ng-select/ng-select": "^20.6.3", "@ngneat/dirty-check-forms": "^3.0.3", "@popperjs/core": "^2.11.8", "bootstrap": "^5.3.8", diff --git a/src-ui/pnpm-lock.yaml b/src-ui/pnpm-lock.yaml index 5c75a1419..13a84f1c2 100644 --- a/src-ui/pnpm-lock.yaml +++ b/src-ui/pnpm-lock.yaml @@ -39,8 +39,8 @@ importers: specifier: ^19.0.1 version: 19.0.1(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/localize@20.3.2(@angular/compiler-cli@20.3.2(@angular/compiler@20.3.2)(typescript@5.8.3))(@angular/compiler@20.3.2))(@popperjs/core@2.11.8)(rxjs@7.8.2) '@ng-select/ng-select': - specifier: ^20.2.2 - version: 20.2.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)) + specifier: ^20.6.3 + version: 20.6.3(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2)) '@ngneat/dirty-check-forms': specifier: ^3.0.3 version: 3.0.3(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(@angular/router@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))(lodash-es@4.17.21)(rxjs@7.8.2) @@ -2356,9 +2356,9 @@ packages: '@popperjs/core': ^2.11.8 rxjs: ^6.5.3 || ^7.4.0 - '@ng-select/ng-select@20.2.2': - resolution: {integrity: sha512-7mctt04/q9yquE4Ec1dQG+SkY6fZ2BQnJLsWmb05TCxYKAYAzDrDTgJJruPDuWrpYx+f3SwejpaI+z/GDrwYdw==} - engines: {node: ^20.19.0 || ^22.12.0 || >=24.0.0} + '@ng-select/ng-select@20.6.3': + resolution: {integrity: sha512-+aX2l3OshyPsyMCAuiA3ND5c6X1DG5jQjdlP8PBIyYEoQWlxEcgJWrMsPa7mHVFRpp+5KZZhnXhyosUE4CEc3w==} + engines: {node: ^22.12.0 || >=24.0.0} peerDependencies: '@angular/common': ^20.0.0 '@angular/core': ^20.0.0 @@ -9413,7 +9413,7 @@ snapshots: rxjs: 7.8.2 tslib: 2.8.1 - '@ng-select/ng-select@20.2.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))': + '@ng-select/ng-select@20.6.3(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/forms@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(@angular/platform-browser@20.3.2(@angular/common@20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2))(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1)))(rxjs@7.8.2))': dependencies: '@angular/common': 20.3.2(@angular/core@20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1))(rxjs@7.8.2) '@angular/core': 20.3.2(@angular/compiler@20.3.2)(rxjs@7.8.2)(zone.js@0.15.1) diff --git a/src-ui/src/app/components/admin/logs/logs.component.html b/src-ui/src/app/components/admin/logs/logs.component.html index d6685d857..70dcda86d 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.html +++ b/src-ui/src/app/components/admin/logs/logs.component.html @@ -3,9 +3,23 @@ i18n-title info="Review the log files for the application and for email checking." i18n-info> -
- - +
+
+ Show + + lines +
+
+ + +
@@ -29,14 +43,19 @@
-
- @if (loading && logFiles.length) { + + @if (loading && !logFiles.length) {
Loading...
} - @for (log of logs; track $index) { -

{{log}}

- } -
+

+ {{log.message}} +

+ diff --git a/src-ui/src/app/components/admin/logs/logs.component.scss b/src-ui/src/app/components/admin/logs/logs.component.scss index 834c8c1cb..56fd2e8f3 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.scss +++ b/src-ui/src/app/components/admin/logs/logs.component.scss @@ -18,7 +18,7 @@ .log-container { overflow-y: scroll; height: calc(100vh - 200px); - top: 70px; + top: 0; p { white-space: pre-wrap; diff --git a/src-ui/src/app/components/admin/logs/logs.component.spec.ts b/src-ui/src/app/components/admin/logs/logs.component.spec.ts index 6e4adacfe..728916830 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.spec.ts +++ b/src-ui/src/app/components/admin/logs/logs.component.spec.ts @@ -1,3 +1,8 @@ +import { + CdkVirtualScrollViewport, + ScrollingModule, +} from '@angular/cdk/scrolling' +import { CommonModule } from '@angular/common' import { provideHttpClient, withInterceptorsFromDi } from '@angular/common/http' import { provideHttpClientTesting } from '@angular/common/http/testing' import { ComponentFixture, TestBed } from '@angular/core/testing' @@ -38,6 +43,9 @@ describe('LogsComponent', () => { NgxBootstrapIconsModule.pick(allIcons), LogsComponent, PageHeaderComponent, + CommonModule, + CdkVirtualScrollViewport, + ScrollingModule, ], providers: [ provideHttpClient(withInterceptorsFromDi()), @@ -54,13 +62,12 @@ describe('LogsComponent', () => { fixture = TestBed.createComponent(LogsComponent) component = fixture.componentInstance reloadSpy = jest.spyOn(component, 'reloadLogs') - window.HTMLElement.prototype.scroll = function () {} // mock scroll jest.useFakeTimers() fixture.detectChanges() }) it('should display logs with first log initially', () => { - expect(logSpy).toHaveBeenCalledWith('paperless') + expect(logSpy).toHaveBeenCalledWith('paperless', 5000) fixture.detectChanges() expect(fixture.debugElement.nativeElement.textContent).toContain( paperless_logs[0] @@ -71,7 +78,7 @@ describe('LogsComponent', () => { fixture.debugElement .queryAll(By.directive(NgbNavLink))[1] .nativeElement.dispatchEvent(new MouseEvent('click')) - expect(logSpy).toHaveBeenCalledWith('mail') + expect(logSpy).toHaveBeenCalledWith('mail', 5000) }) it('should handle error with no logs', () => { @@ -83,6 +90,10 @@ describe('LogsComponent', () => { }) it('should auto refresh, allow toggle', () => { + jest + .spyOn(CdkVirtualScrollViewport.prototype, 'scrollToIndex') + .mockImplementation(() => undefined) + jest.advanceTimersByTime(6000) expect(reloadSpy).toHaveBeenCalledTimes(2) @@ -90,4 +101,13 @@ describe('LogsComponent', () => { jest.advanceTimersByTime(6000) expect(reloadSpy).toHaveBeenCalledTimes(2) }) + + it('should debounce limit changes before reloading logs', () => { + const initialCalls = reloadSpy.mock.calls.length + component.onLimitChange(6000) + jest.advanceTimersByTime(299) + expect(reloadSpy).toHaveBeenCalledTimes(initialCalls) + jest.advanceTimersByTime(1) + expect(reloadSpy).toHaveBeenCalledTimes(initialCalls + 1) + }) }) diff --git a/src-ui/src/app/components/admin/logs/logs.component.ts b/src-ui/src/app/components/admin/logs/logs.component.ts index 4799b6125..68b88265d 100644 --- a/src-ui/src/app/components/admin/logs/logs.component.ts +++ b/src-ui/src/app/components/admin/logs/logs.component.ts @@ -1,7 +1,11 @@ +import { + CdkVirtualScrollViewport, + ScrollingModule, +} from '@angular/cdk/scrolling' +import { CommonModule } from '@angular/common' import { ChangeDetectorRef, Component, - ElementRef, OnDestroy, OnInit, ViewChild, @@ -9,7 +13,7 @@ import { } from '@angular/core' import { FormsModule, ReactiveFormsModule } from '@angular/forms' import { NgbNavModule } from '@ng-bootstrap/ng-bootstrap' -import { filter, takeUntil, timer } from 'rxjs' +import { Subject, debounceTime, filter, takeUntil, timer } from 'rxjs' import { LogService } from 'src/app/services/rest/log.service' import { PageHeaderComponent } from '../../common/page-header/page-header.component' import { LoadingComponentWithPermissions } from '../../loading-component/loading.component' @@ -21,8 +25,11 @@ import { LoadingComponentWithPermissions } from '../../loading-component/loading imports: [ PageHeaderComponent, NgbNavModule, + CommonModule, FormsModule, ReactiveFormsModule, + CdkVirtualScrollViewport, + ScrollingModule, ], }) export class LogsComponent @@ -32,7 +39,7 @@ export class LogsComponent private logService = inject(LogService) private changedetectorRef = inject(ChangeDetectorRef) - public logs: string[] = [] + public logs: Array<{ message: string; level: number }> = [] public logFiles: string[] = [] @@ -40,9 +47,17 @@ export class LogsComponent public autoRefreshEnabled: boolean = true - @ViewChild('logContainer') logContainer: ElementRef + public limit: number = 5000 + + private readonly limitChange$ = new Subject() + + @ViewChild('logContainer') logContainer: CdkVirtualScrollViewport ngOnInit(): void { + this.limitChange$ + .pipe(debounceTime(300), takeUntil(this.unsubscribeNotifier)) + .subscribe(() => this.reloadLogs()) + this.logService .list() .pipe(takeUntil(this.unsubscribeNotifier)) @@ -68,16 +83,33 @@ export class LogsComponent super.ngOnDestroy() } + onLimitChange(limit: number): void { + this.limitChange$.next(limit) + } + reloadLogs() { this.loading = true this.logService - .get(this.activeLog) + .get(this.activeLog, this.limit) .pipe(takeUntil(this.unsubscribeNotifier)) .subscribe({ next: (result) => { - this.logs = result this.loading = false - this.scrollToBottom() + const parsed = this.parseLogsWithLevel(result) + const hasChanges = + parsed.length !== this.logs.length || + parsed.some((log, idx) => { + const current = this.logs[idx] + return ( + !current || + current.message !== log.message || + current.level !== log.level + ) + }) + if (hasChanges) { + this.logs = parsed + this.scrollToBottom() + } }, error: () => { this.logs = [] @@ -100,12 +132,19 @@ export class LogsComponent } } + private parseLogsWithLevel( + logs: string[] + ): Array<{ message: string; level: number }> { + return logs.map((log) => ({ + message: log, + level: this.getLogLevel(log), + })) + } + scrollToBottom(): void { this.changedetectorRef.detectChanges() - this.logContainer?.nativeElement.scroll({ - top: this.logContainer.nativeElement.scrollHeight, - left: 0, - behavior: 'auto', - }) + if (this.logContainer) { + this.logContainer.scrollToIndex(this.logs.length - 1) + } } } diff --git a/src-ui/src/app/components/app-frame/app-frame.component.html b/src-ui/src/app/components/app-frame/app-frame.component.html index 7ec92cda8..673eaf03b 100644 --- a/src-ui/src/app/components/app-frame/app-frame.component.html +++ b/src-ui/src/app/components/app-frame/app-frame.component.html @@ -68,13 +68,15 @@
- Select: + Select:
@if (list.selected.size > 0) { diff --git a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts index 9e83797a6..fecbaa170 100644 --- a/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts +++ b/src-ui/src/app/components/document-list/filter-editor/filter-editor.component.ts @@ -747,7 +747,7 @@ export class FilterEditorComponent ) { filterRules.push({ rule_type: FILTER_TITLE_CONTENT, - value: this._textFilter, + value: this._textFilter.trim(), }) } if (this._textFilter && this.textFilterTarget == TEXT_FILTER_TARGET_TITLE) { @@ -805,7 +805,7 @@ export class FilterEditorComponent ) { filterRules.push({ rule_type: FILTER_FULLTEXT_QUERY, - value: this._textFilter, + value: this._textFilter.trim(), }) } if ( diff --git a/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html b/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html index 604e3fd68..26b63fd56 100644 --- a/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html +++ b/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html @@ -68,7 +68,7 @@ -
+                  
                     {{ mail.error }}
                   
diff --git a/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.scss b/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.scss index 6aadd8330..c87a5c3f6 100644 --- a/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.scss +++ b/src-ui/src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.scss @@ -1,5 +1,7 @@ ::ng-deep .popover { max-width: 350px; + max-height: 600px; + overflow: hidden; pre { white-space: pre-wrap; 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 6b235123a..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 @@ -146,7 +146,7 @@ export abstract class ManagementListComponent } public getOriginalObject(object: T): T { - return this.unfilteredData.find((d) => d.id == object.id) + return this.unfilteredData.find((d) => d?.id == object?.id) || object } reloadData(extraParams: { [key: string]: any } = null) { @@ -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..0db84182b 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], @@ -72,9 +73,14 @@ describe('TagListComponent', () => { ) }) - it('should filter out child tags if name filter is empty, otherwise show all', () => { + it('should omit matching children from top level when their parent is present', () => { const tags = [ - { id: 1, name: 'Tag1', parent: null }, + { + id: 1, + name: 'Tag1', + parent: null, + children: [{ id: 2, name: 'Tag2', parent: 1 }], + }, { id: 2, name: 'Tag2', parent: 1 }, { id: 3, name: 'Tag3', parent: null }, ] @@ -85,6 +91,65 @@ describe('TagListComponent', () => { component['_nameFilter'] = 'Tag2' // Simulate non-empty name filter const filteredWithName = component.filterData(tags as any) - expect(filteredWithName.length).toBe(3) + expect(filteredWithName.length).toBe(2) + expect(filteredWithName.find((t) => t.id === 2)).toBeUndefined() + expect( + filteredWithName + .find((t) => t.id === 1) + ?.children?.some((c) => c.id === 2) + ).toBe(true) + }) + + 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..64ca121df 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,33 @@ 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) + if (!this.nameFilter?.length) { + return data.filter((tag) => !tag.parent) + } + + // When filtering by name, exclude children if their parent is also present + const availableIds = new Set(data.map((tag) => tag.id)) + return data.filter((tag) => !tag.parent || !availableIds.has(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/app/services/rest/abstract-paperless-service.ts b/src-ui/src/app/services/rest/abstract-paperless-service.ts index 34e2c8aea..60f91eb5f 100644 --- a/src-ui/src/app/services/rest/abstract-paperless-service.ts +++ b/src-ui/src/app/services/rest/abstract-paperless-service.ts @@ -1,7 +1,7 @@ import { HttpClient, HttpParams } from '@angular/common/http' import { inject, Injectable } from '@angular/core' import { Observable } from 'rxjs' -import { map, publishReplay, refCount } from 'rxjs/operators' +import { map, publishReplay, refCount, tap } from 'rxjs/operators' import { ObjectWithId } from 'src/app/data/object-with-id' import { Results } from 'src/app/data/results' import { environment } from 'src/environments/environment' @@ -13,6 +13,11 @@ export abstract class AbstractPaperlessService { protected http: HttpClient protected resourceName: string + protected _loading: boolean = false + public get loading(): boolean { + return this._loading + } + constructor() { this.http = inject(HttpClient) } @@ -43,6 +48,7 @@ export abstract class AbstractPaperlessService { sortReverse?: boolean, extraParams? ): Observable> { + this._loading = true let httpParams = new HttpParams() if (page) { httpParams = httpParams.set('page', page.toString()) @@ -59,9 +65,15 @@ export abstract class AbstractPaperlessService { httpParams = httpParams.set(extraParamKey, extraParams[extraParamKey]) } } - return this.http.get>(this.getResourceUrl(), { - params: httpParams, - }) + return this.http + .get>(this.getResourceUrl(), { + params: httpParams, + }) + .pipe( + tap(() => { + this._loading = false + }) + ) } private _listAll: Observable> @@ -96,6 +108,7 @@ export abstract class AbstractPaperlessService { } getFew(ids: number[], extraParams?): Observable> { + this._loading = true let httpParams = new HttpParams() httpParams = httpParams.set('id__in', ids.join(',')) httpParams = httpParams.set('ordering', '-id') @@ -105,9 +118,15 @@ export abstract class AbstractPaperlessService { httpParams = httpParams.set(extraParamKey, extraParams[extraParamKey]) } } - return this.http.get>(this.getResourceUrl(), { - params: httpParams, - }) + return this.http + .get>(this.getResourceUrl(), { + params: httpParams, + }) + .pipe( + tap(() => { + this._loading = false + }) + ) } clearCache() { @@ -115,7 +134,12 @@ export abstract class AbstractPaperlessService { } get(id: number): Observable { - return this.http.get(this.getResourceUrl(id)) + this._loading = true + return this.http.get(this.getResourceUrl(id)).pipe( + tap(() => { + this._loading = false + }) + ) } create(o: T): Observable { diff --git a/src-ui/src/app/services/rest/log.service.spec.ts b/src-ui/src/app/services/rest/log.service.spec.ts index e3138b895..7eda9c4a3 100644 --- a/src-ui/src/app/services/rest/log.service.spec.ts +++ b/src-ui/src/app/services/rest/log.service.spec.ts @@ -49,4 +49,14 @@ describe('LogService', () => { ) expect(req.request.method).toEqual('GET') }) + + it('should pass limit param on logs get when provided', () => { + const id: string = 'mail' + const limit: number = 100 + subscription = service.get(id, limit).subscribe() + const req = httpTestingController.expectOne( + `${environment.apiBaseUrl}${endpoint}/${id}/?limit=${limit}` + ) + expect(req.request.method).toEqual('GET') + }) }) diff --git a/src-ui/src/app/services/rest/log.service.ts b/src-ui/src/app/services/rest/log.service.ts index a836fa555..d07f7cd69 100644 --- a/src-ui/src/app/services/rest/log.service.ts +++ b/src-ui/src/app/services/rest/log.service.ts @@ -1,4 +1,4 @@ -import { HttpClient } from '@angular/common/http' +import { HttpClient, HttpParams } from '@angular/common/http' import { Injectable, inject } from '@angular/core' import { Observable } from 'rxjs' import { environment } from 'src/environments/environment' @@ -13,7 +13,13 @@ export class LogService { return this.http.get(`${environment.apiBaseUrl}logs/`) } - get(id: string): Observable { - return this.http.get(`${environment.apiBaseUrl}logs/${id}/`) + get(id: string, limit?: number): Observable { + let params = new HttpParams() + if (limit !== undefined) { + params = params.set('limit', limit.toString()) + } + return this.http.get(`${environment.apiBaseUrl}logs/${id}/`, { + params, + }) } } diff --git a/src-ui/src/app/services/rest/mail-account.service.ts b/src-ui/src/app/services/rest/mail-account.service.ts index d4511e2d6..54f6051e2 100644 --- a/src-ui/src/app/services/rest/mail-account.service.ts +++ b/src-ui/src/app/services/rest/mail-account.service.ts @@ -7,18 +7,16 @@ import { AbstractPaperlessService } from './abstract-paperless-service' providedIn: 'root', }) export class MailAccountService extends AbstractPaperlessService { - loading: boolean - constructor() { super() this.resourceName = 'mail_accounts' } private reload() { - this.loading = true + this._loading = true this.listAll().subscribe((r) => { this.mailAccounts = r.results - this.loading = false + this._loading = false }) } diff --git a/src-ui/src/app/services/rest/mail-rule.service.ts b/src-ui/src/app/services/rest/mail-rule.service.ts index bb92107a9..e9923e570 100644 --- a/src-ui/src/app/services/rest/mail-rule.service.ts +++ b/src-ui/src/app/services/rest/mail-rule.service.ts @@ -7,18 +7,16 @@ import { AbstractPaperlessService } from './abstract-paperless-service' providedIn: 'root', }) export class MailRuleService extends AbstractPaperlessService { - loading: boolean - constructor() { super() this.resourceName = 'mail_rules' } private reload() { - this.loading = true + this._loading = true this.listAll().subscribe((r) => { this.mailRules = r.results - this.loading = false + this._loading = false }) } diff --git a/src-ui/src/app/services/rest/saved-view.service.ts b/src-ui/src/app/services/rest/saved-view.service.ts index 4ea2cef65..7bdb890a0 100644 --- a/src-ui/src/app/services/rest/saved-view.service.ts +++ b/src-ui/src/app/services/rest/saved-view.service.ts @@ -17,7 +17,6 @@ export class SavedViewService extends AbstractPaperlessService { private settingsService = inject(SettingsService) private documentService = inject(DocumentService) - public loading: boolean = true private savedViews: SavedView[] = [] private savedViewDocumentCounts: Map = new Map() private unsubscribeNotifier: Subject = new Subject() @@ -38,12 +37,12 @@ export class SavedViewService extends AbstractPaperlessService { tap({ next: (r) => { this.savedViews = r.results - this.loading = false + this._loading = false this.settingsService.dashboardIsEmpty = this.dashboardViews.length === 0 }, error: () => { - this.loading = false + this._loading = false this.settingsService.dashboardIsEmpty = true }, }) diff --git a/src-ui/src/app/services/rest/workflow.service.ts b/src-ui/src/app/services/rest/workflow.service.ts index ecf564f06..5c037a8e3 100644 --- a/src-ui/src/app/services/rest/workflow.service.ts +++ b/src-ui/src/app/services/rest/workflow.service.ts @@ -7,18 +7,16 @@ import { AbstractPaperlessService } from './abstract-paperless-service' providedIn: 'root', }) export class WorkflowService extends AbstractPaperlessService { - loading: boolean - constructor() { super() this.resourceName = 'workflows' } public reload() { - this.loading = true + this._loading = true this.listAll().subscribe((r) => { this.workflows = r.results - this.loading = false + this._loading = false }) } diff --git a/src-ui/src/app/utils/custom-field-query-element.spec.ts b/src-ui/src/app/utils/custom-field-query-element.spec.ts index 411dcd6f9..e01af7fd4 100644 --- a/src-ui/src/app/utils/custom-field-query-element.spec.ts +++ b/src-ui/src/app/utils/custom-field-query-element.spec.ts @@ -1,4 +1,3 @@ -import { fakeAsync, tick } from '@angular/core/testing' import { CustomFieldQueryElementType, CustomFieldQueryLogicalOperator, @@ -111,13 +110,38 @@ describe('CustomFieldQueryAtom', () => { expect(atom.serialize()).toEqual([1, 'operator', 'value']) }) - it('should emit changed on value change after debounce', fakeAsync(() => { + it('should emit changed on value change immediately', () => { const atom = new CustomFieldQueryAtom() const changeSpy = jest.spyOn(atom.changed, 'next') atom.value = 'new value' - tick(1000) expect(changeSpy).toHaveBeenCalled() - })) + }) + + it('should ignore duplicate array emissions', () => { + const atom = new CustomFieldQueryAtom() + atom.operator = CustomFieldQueryOperator.In + const changeSpy = jest.fn() + atom.changed.subscribe(changeSpy) + + atom.value = [1, 2] + expect(changeSpy).toHaveBeenCalledTimes(1) + + changeSpy.mockClear() + atom.value = [1, 2] + expect(changeSpy).not.toHaveBeenCalled() + }) + + it('should emit when array values differ while length matches', () => { + const atom = new CustomFieldQueryAtom() + atom.operator = CustomFieldQueryOperator.In + const changeSpy = jest.fn() + atom.changed.subscribe(changeSpy) + + atom.value = [1, 2] + changeSpy.mockClear() + atom.value = [1, 3] + expect(changeSpy).toHaveBeenCalledTimes(1) + }) }) describe('CustomFieldQueryExpression', () => { diff --git a/src-ui/src/app/utils/custom-field-query-element.ts b/src-ui/src/app/utils/custom-field-query-element.ts index 3438f2c85..34891641a 100644 --- a/src-ui/src/app/utils/custom-field-query-element.ts +++ b/src-ui/src/app/utils/custom-field-query-element.ts @@ -1,4 +1,4 @@ -import { Subject, debounceTime, distinctUntilChanged } from 'rxjs' +import { Subject, distinctUntilChanged } from 'rxjs' import { v4 as uuidv4 } from 'uuid' import { CUSTOM_FIELD_QUERY_VALUE_TYPES_BY_OPERATOR, @@ -110,7 +110,22 @@ export class CustomFieldQueryAtom extends CustomFieldQueryElement { protected override connectValueModelChanged(): void { this.valueModelChanged - .pipe(debounceTime(1000), distinctUntilChanged()) + .pipe( + distinctUntilChanged((previous, current) => { + if (Array.isArray(previous) && Array.isArray(current)) { + if (previous.length !== current.length) { + return false + } + for (let i = 0; i < previous.length; i++) { + if (previous[i] !== current[i]) { + return false + } + } + return true + } + return previous === current + }) + ) .subscribe(() => { this.changed.next(this) }) diff --git a/src-ui/src/environments/environment.prod.ts b/src-ui/src/environments/environment.prod.ts index 188cf96e1..b81beb1c5 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.0', + version: '2.19.6', 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 1f0aafa05..0bc9fced5 100644 --- a/src-ui/src/locale/messages.af_ZA.xlf +++ b/src-ui/src/locale/messages.af_ZA.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Instellings @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logboeke @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error retrieving users @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error retrieving groups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Fout by die bewaar van instellings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Lêertake @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Bevestig skrap @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Gebruikers & Groepe @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Wagwoord is verander, u sal vir nn oomblik afgeteken word. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Gebruiker “” is bewaar. @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Fout by bewaar van gebruiker. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Bevestig skrap van gebruikersrekening @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Hierdie bewerking sal hierdie gebruikersrekening permanent skrap. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Groep “” is bewaar. @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Fout by bewaar van groep. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Bevestig skrap van gebruikersgroep @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Hierdie bewerking sal hierdie gebruikersgroep permanent skrap. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentasie @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Bewaarde aansigte @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open dokumente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Sluit alles @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Bestuur @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-pos @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is beskikbaar. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik om te bekyk. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan outomaties na bywerkings soek @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hoe werk dit? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Bywerking beskikbaar @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Fout by die bewaar van instellings vir soek na bywerkings. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Hoofletterongevoelig @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Ken dokumenttipe toe @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Ken korrespondent toe @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-pos @@ -4954,7 +4978,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 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Wysig gebruikersrekening @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Sluit in: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Kies alles + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Geen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 suksesvol geskep. @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Fout by die skep van . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Fout by die skrap van . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 94f55188c..83620d77a 100644 --- a/src-ui/src/locale/messages.ar_AR.xlf +++ b/src-ui/src/locale/messages.ar_AR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 الإعدادات @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 السجلات @@ -742,11 +742,35 @@ راجع ملفات السجلات للتطبيق ولفحص البريد الإلكتروني. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + إظهار + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 خطأ في استرجاع المستخدمين @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 خطأ في استرداد المجموعات @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 حدث خطأ في أثناء حفظ الإعدادات. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 ملف المهام @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 سلة المهملات @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 تأكيد الحذف @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 المستخدمين & المجموعات @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 تم تغيير كلمة المرور ، سيتم تسجيل خروجك مؤقتاً. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 مستخدم محفوظ "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 خطأ أثناء حفظ المستخدم. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 تأكيد حذف حساب المستخدم @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 ستؤدي هذه العملية إلى حذف حساب المستخدم هذا نهائيا. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 مجموعة محفوظة "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 خطأ في حفظ المجموعة. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 تأكيد حذف مجموعة المستخدم @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 ستؤدي هذه العملية إلى حذف مجموعة المستخدمين هذه نهائيا. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 الوثائق @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 طرق العرض المحفوظة @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 فتح المستندات @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 إغلاق الكل @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 إدارة @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 البريد @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 الإدارة @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 التهيئة @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 متوفر. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 انقر للعرض. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx يتحقق تلقائياً من وجود تحديثات @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 كيف يعمل هذا؟ @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 يتوفر تحديث @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 تم تحديث طرق عرض الشريط الجانبي @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 خطأ في تحديث طرق عرض الشريط الجانبي @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 حدث خطأ في أثناء حفظ إعدادات التحقق من التحديث. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 حالة غير حساسة @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 تعيين نوع المستند @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 تعيين جهة تراسل @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 البريد الإلكتروني @@ -4954,7 +4978,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 إنشاء حساب مستخدم جديد @@ -4962,7 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 تعديل حساب المستخدم @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 نوع المشغل @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 تصفية اسم المِلَفّ @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 تصفية المصادر @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 تصفية المسار @@ -5174,7 +5198,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 +5206,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 تصفية قاعدة البريد @@ -5190,7 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 خوارزمية مطابقة المحتوى @@ -5206,7 +5230,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 نمط مطابقة المحتوى @@ -5214,7 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 نوع الإجراء @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 تعيين العنوان @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 تعيين وسوم @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 تعيين مسار التخزين @@ -5286,7 +5310,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 تعيين حقول مخصصة @@ -5294,7 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 تعيين مالك @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 تعيين صلاحيات العرض @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 تعيين صلاحيات التحرير @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 إزالة الوسوم @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 إزالة جهات التراسل @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 إزالة أنواع المستندات @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 إزالة مسارات التخزين @@ -5382,7 +5406,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 إزالة الحقول المخصصة @@ -5390,7 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 إزالة المُلًاك @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 إزالة الصلاحيات @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 عرض الصلاحيات @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 تحرير الصلاحيات @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 فتح المرشح @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 تم تحديث الملف الشخصي بنجاح @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 خطأ أثناء حفظ الملف الشخصي @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 خطأ أثناء إنشاء رمز المصادقة @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 خطأ أثناء قطع الاتصال بحساب الشبكة الاجتماعية @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 يحتوي على: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 الملفات المؤرشفة @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 الملفات الأصلية @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 استخدام اسم الملف المنسق @@ -8670,6 +8694,14 @@ تحديد الكل + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ لا شيء - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - إظهار - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 خطأ أثناء تحديث الصلاحيات @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 تم إنشاء بنجاح. @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 حدث خطأ أثناء إنشاء . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 حدث خطأ أثناء حفظ . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 لن يتم حذف المستندات المرتبطة. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 خطأ أثناء حذف العنصر @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 تم تحديث الصلاحيات بنجاح @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 ستؤدي هذه العملية إلى حذف جميع الكائنات نهائيا. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 تمّ حذف الكائنات بنجاحٍ @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 خطأ أثناء حذف الكائنات diff --git a/src-ui/src/locale/messages.be_BY.xlf b/src-ui/src/locale/messages.be_BY.xlf index ed2334336..21638825e 100644 --- a/src-ui/src/locale/messages.be_BY.xlf +++ b/src-ui/src/locale/messages.be_BY.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Наладкі @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Логі @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error retrieving users @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error retrieving groups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Адбылася памылка пры захаванні налад. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Файлавыя задачы @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Пацвердзіце выдаленне @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Saved user "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Error saving user. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirm delete user account @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 This operation will permanently delete this user account. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Saved group "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Error saving group. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirm delete user group @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 This operation will permanently delete this user group. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Дакументацыя @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Захаваныя выгляды @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Адкрыць дакументы @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Закрыць усё @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Кіраванне @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 даступна. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Націсніце, каб убачыць. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx можа аўтаматычна правяраць наяўнасць абнаўленняў @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Як гэта працуе? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Даступна абнаўленне @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Адбылася памылка падчас захавання налад праверкі абнаўленняў. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Без уліку рэгістра @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Email @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Include: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Выбраць усё + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 b4b15fe27..94ce051ab 100644 --- a/src-ui/src/locale/messages.bg_BG.xlf +++ b/src-ui/src/locale/messages.bg_BG.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Настройки @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Дневници @@ -742,11 +742,35 @@ Прегледайте регистрационните файлове за приложението и за проверка на имейл. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Покажи + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Грешка при извличане на потребители @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Грешка при извличане на групи @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Възникна грешка при запазване на настройките. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Файлови задачи @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Кошче @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Потвърдете изтриването @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Потребители & Групи @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Паролата е променена, ще излезете моментално. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Запазен потребител "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Възникна грешка при запазване на потребител. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Потвърдете изтриването на потребителски профил @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Тази операция ще изтрие завинаги този потребителски профил. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Изтрит потребител "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Грешка при изтриване на потребител "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Запазена група "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Грешка при запазване на група. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Потвърдете изтриването на потребителска група @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Тази операция ще изтрие завинаги тази потребителска група. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Изтрита група "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Грешка при изтриването на групата "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Документация @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Запазени изгледи @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Отворени документи @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Затвори всички @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Управление @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Поща @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Администрация @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Конфигурация @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 е налично. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Натисни за преглед. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx може автоматично да проверява за актуализации @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Как работи това? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Налична актуализация @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Изгледите на страничната лента са актуализирани @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Грешка при актуализиране на изгледите на страничната лента @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Възникна грешка при запазване на настройките за проверка за актуализация. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Правилно @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Грешно @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Търсене в документи... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Не @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Добавете заявка @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Добавете израз @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Без чувствителност към големината на буквите @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Задаване на тип на документ @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Задаване на кореспондент @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Имейл @@ -4954,7 +4978,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Създаване на нов потребителски профил @@ -4962,7 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Промяна на потребителски профил @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp е деактивиран @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Тип на тригъра @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Дата на отместване @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Спрямо @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Персонализирано поле @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Повтарящи се @@ -5110,7 +5134,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Тригерът се повтаря. @@ -5118,7 +5142,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Повтарящи се интервални дни @@ -5126,7 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Филтриране по файлово име @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Филтриране на източници @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Филтриране на път @@ -5174,7 +5198,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 +5206,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Правило за филтриране на поща @@ -5190,7 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Алгоритъм за съвпадение на съдържанието @@ -5206,7 +5230,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Модел за съвпадение на съдържанието @@ -5214,7 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Тип на действие @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Задаване на заглавие @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Задаване на етикет @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Задаване нa път за съхранение @@ -5286,7 +5310,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Присвояване на персонализирани полета @@ -5294,7 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Задаване на собственик @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Задаване на права за разглеждане @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Задаване на права за промяна @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Премахни тагове @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Премахни кореспонденти @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Премахни типове документи @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Премахнете пътищата за съхранение @@ -5382,7 +5406,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Премахнете персонализираните полета @@ -5390,7 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Премахни собственици @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Премахване на права @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Права за преглед @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Редакция на права @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Имейл тема @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Имейл съобщение @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Получатели на имейл @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Прикачете документ @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Url адрес на известяване @@ -5462,7 +5486,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Избери параметри за известяване със съобщение @@ -5470,7 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Известяване параметри @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Известяване съобщение @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Заглавия за известяване @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Добави документа @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Отвори филтър @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Профила е актуализиран успешно @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Грешка при запазването на профила @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Грешка при генериране на auth токен @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Грешка при прекъсване на връзката със социалния акаунт @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Грешка при извличане на настройките за TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP е активиран успешно @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Грешка при активирането на TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP е деактивиран успешно @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Грешка при деактивирането на TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Възникна грешка при зареждането на tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Включете: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Архивирани файлове @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Оригинални файлове @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Използвайте форматирано име на файл @@ -8670,6 +8694,14 @@ Избери всички + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Нищо - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Покажи - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Грешка при актуализиране на правата @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Успешно създаден . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Възникна грешка при създаването . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Успешно актуализиран "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Възникна грешка при запазване . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Свързаните документи няма да бъдат изтрити. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Грешка при изтриване на елемент @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Правата са актуализирани успешно @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Тази операция ще изтрие завинаги всички обекти. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Обектите са успешно изтрити @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 Грешки при изтриване на обектите diff --git a/src-ui/src/locale/messages.ca_ES.xlf b/src-ui/src/locale/messages.ca_ES.xlf index 7da077d29..492ecc9b7 100644 --- a/src-ui/src/locale/messages.ca_ES.xlf +++ b/src-ui/src/locale/messages.ca_ES.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Opcions @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Registres @@ -742,11 +742,35 @@ Revisa els fitxers de registre de l'aplicació i per a la comprovació del correu electrònic. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Mostra + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + línies + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error recuperant l'usuari @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error recuperant els grups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Error al guardar opcions. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tasques d'arxiu @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Brossa @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Confirma eliminació @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Usuaris i grups @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Contrasenya desada, es tancarà la sessió momentàniament. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Desat usuari "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Error desant usuari. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirma esborrat compte usuari @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Això esborrarà definitivament aquest compte d'usuari. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Esborrat usuari "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error esborrant usuari "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Grup desat "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Error desant grup. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirma esborrat grup usuari @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Operació esborrarà aquest grup d'usuari. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Esborrat grup "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error esborrant grup "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentació @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vistes guardades @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Obre document @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tanca-ho tot @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gestiona @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Correu @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administració @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuració @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 està disponible. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Cliqueu per veure. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx pot cercar actualitzacions automàticament @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Com funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Actualització disponible @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vistes laterals actualitzades @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error a l'actualitzar vistes laterals @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 S'ha produït un error en desar la configuració de comprovació d'actualitzacions. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Vertader @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Fals @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Cerca docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 No @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Afegir consulta @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Afegir expressió @@ -3978,7 +4002,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 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assigna tipus document @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assigna corresponsal @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Email @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp desactivat @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Tipus disparador @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Dies de compensació @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relatiu a @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Camp personalitzat @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurrent @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtra nom arxiu @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtra orígens @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtra ruta @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Filtresavançats @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Afegeix filtre @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tipus acció @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assigna títol @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assigna etiquetes @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assigna propietari @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Elimina etiquetes @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Elimina corresponsals @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Elimina propietaris @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Elimina permisos @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Veure permisos @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edita permisos @@ -5422,7 +5446,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 +5454,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 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Destinataris del mail @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Adjuntar document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,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 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Cos del Webhook @@ -5494,7 +5518,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 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Incloure documents @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Obrir filtre @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Perfil actualitzat corrcetament @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error desant perfil @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generant auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error desconnectant compte social @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error obtenint les opcions TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activat correctament @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activant TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP desactivat correctament @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error desactivant TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Impressió fallida. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error carregant document per imprimir. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Error al carregar tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Inclou: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Arxius arxivats @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Fitxers originals @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Utilitza nom arxiu formatat @@ -8670,6 +8694,14 @@ Selecciona tot + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Selecciona: + None @@ -8686,18 +8718,6 @@ Cap - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostra - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error actualitzant permisos @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Creat correctament . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error creant . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Actualitzat correctament "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error al guardar . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Documents assocuiats no seran esborrats. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error esborrant element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permisos actualitzats correctament @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Aquesta operació esborrarà tots els objectes. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objecte esborrat correctament @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 c1329ff3a..d47817703 100644 --- a/src-ui/src/locale/messages.cs_CZ.xlf +++ b/src-ui/src/locale/messages.cs_CZ.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nastavení @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Záznamy @@ -742,11 +742,35 @@ Prohlédněte si soubory protokolu pro aplikaci a pro kontrolu e-mailů. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Zobrazit + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + řádky + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Chyba při načítání uživatelů @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Chyba při načítání skupin @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Při ukládání nastavení došlo k chybě. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Úlohy souborů @@ -2124,7 +2148,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 +2156,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Chyba při odstraňování úkolu queued @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Koš @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Potvrdit smazání @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Uživatelé a skupiny @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Heslo bylo změněno, za chvíli budete odhlášeni. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Uživatel „“ uložen. @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Chyba při ukládání uživatele. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Potvrdit smazání uživatelského účtu @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Tato operace trvale odstraní tento uživatelský účet. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Uživatel „“ odstraněn @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Chyba při odstraňování uživatele „“. @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Skupina „“ uložena. @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Chyba při ukládání skupiny. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Potvrdit odstranění skupiny uživatelů @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Tato operace trvale odstraní tuto skupinu uživatelů. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Skupina „“ odstraněna @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Chyba při odstraňování skupiny „“. @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentace @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Uložené pohledy @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otevřené dokumenty @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zavřít vše @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Správa @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Pošta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrace @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurace @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je k dispozici. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikněte pro zobrazení. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx umí automaticky kontrolovat aktualizace @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Jak to funguje? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Je dostupná aktualizace @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Pohledy postranního panelu aktualizovány @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Chyba při aktualizaci pohledů postranního panelu @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Došlo k chybě při ukládání nastavení kontroly aktualizací. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Pravda @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Nepravda @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Hledat dokumenty... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Není @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Přidat dotaz @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Přidat výraz @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Nerozlišovat velikost písmen @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Přiřadit typ dokumentu @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Přiřadit korespondenta @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-mail @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP deaktivováno @@ -4978,11 +5002,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 +5070,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 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Posun ve dnech @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Ve vztahu k @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Vlastní pole @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Opakující se @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,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 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtr zdrojů @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtr cesty @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,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 +5278,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 +5286,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 +5294,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 +5302,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 +5310,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 +5318,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 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Odstranit štítky @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Odstranit korespondenty @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Odstranit vlastníky @@ -5398,7 +5422,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 +5430,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 +5438,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 +5446,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 +5454,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 +5462,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 +5470,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 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL webhooku @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parametry webhooku @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Tělo webhooku @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Hlavičky webhooku @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Zahrnout dokument @@ -5620,7 +5644,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 +5652,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 +5660,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 +5676,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 +5692,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 +5708,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 +5716,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 +5740,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 +5792,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 +5808,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 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Otevřít filtr @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil úspěšně aktualizován @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Chyba při ukládání profilu @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Chyba při generování ověřovacího tokenu @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Chyba při odpojování účtu sociální sítě @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Chyba při získávání nastavení TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP úspěšně aktivováno @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Chyba při aktivaci TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP úspěšně deaktivováno @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Chyba při deaktivaci TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Tisk selhal. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Chyba při načítání dokumentu pro tisk. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Došlo k chybě při načítání tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Zahrnout: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archivované soubory @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Původní soubory @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Použít formátovaný název souboru @@ -8669,6 +8693,14 @@ Vybrat vše + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Vybrat: + None @@ -8685,18 +8717,6 @@ Žádný - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Zobrazit - Sort @@ -9571,7 +9591,7 @@ src/app/components/manage/mail/mail.component.html 143 - View Processed Mail + Zobrazit zpracovanou poštu No mail rules defined. @@ -9765,7 +9785,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Chyba při aktualizaci oprávnění @@ -9775,7 +9795,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 +9803,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 +9811,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 33 - Received + Přijato Processed @@ -9799,7 +9819,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 34 - Processed + Zpracováno Processed mail(s) deleted @@ -9807,7 +9827,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: @@ -9905,7 +9925,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Úspěšně vytvořeno . @@ -9913,7 +9933,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Došlo k chybě při vytváření . @@ -9921,7 +9941,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 “ úspěšně aktualizován. @@ -9929,7 +9949,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Došlo k chybě při ukládání . @@ -9937,7 +9957,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Související dokumenty nebudou odstraněny. @@ -9945,7 +9965,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Chyba při odstraňování prvku @@ -9953,7 +9973,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Oprávnění úspěšně aktualizována @@ -9961,7 +9981,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Tato operace trvale odstraní všechny objekty. @@ -9969,7 +9989,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objekty úspěšně odstraněny @@ -9977,7 +9997,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 61abd5f23..ced3c51a0 100644 --- a/src-ui/src/locale/messages.da_DK.xlf +++ b/src-ui/src/locale/messages.da_DK.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Indstillinger @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logninger @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error retrieving users @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error retrieving groups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Bekræft sletning @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Saved user "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Error saving user. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirm delete user account @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 This operation will permanently delete this user account. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Saved group "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Error saving group. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirm delete user group @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 This operation will permanently delete this user group. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Gemte visninger @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Åbn dokumenter @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Luk alle @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Administrér @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 er tilgængelig. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik for at se. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Opdatering tilgængelig @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,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 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Email @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Include: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Vælg alle + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 f4b93b223..a43edd5d3 100644 --- a/src-ui/src/locale/messages.de_DE.xlf +++ b/src-ui/src/locale/messages.de_DE.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Einstellungen @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Protokolle @@ -742,11 +742,35 @@ Überprüfen Sie die Protokolldateien für die Anwendung und den E-Mail-Abruf. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Anzeigen + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + Zeilen + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Fehler beim Abrufen der Benutzer @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Fehler beim Abrufen der Benutzergruppen @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Fehler beim Speichern der Einstellungen. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Dateiaufgaben @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papierkorb @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Löschen bestätigen @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Benutzer & Gruppen @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Das Kennwort wurde geändert, Sie werden nun abgemeldet. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Benutzerkonto „“ gespeichert. @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Fehler beim Speichern des Benutzers. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Löschen des Benutzerkontos bestätigen @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Dieser Vorgang wird dieses Benutzerkonto unwiderruflich löschen. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Benutzer „“ gelöscht @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Fehler beim Löschen des Benutzers „“. @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Gruppe „“ gespeichert. @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Fehler beim Speichern der Gruppe. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Löschen der Benutzergruppe bestätigen @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Dieser Vorgang wird diese Benutzergruppe unwiderruflich löschen. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Gruppe „“ gelöscht @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Fehler beim Löschen der Gruppe „“. @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Gespeicherte Ansichten @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Geöffnete Dokumente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Alle schließen @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Verwaltung @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 ist verfügbar. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Zum Anzeigen klicken. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kann automatisch auf Aktualisierungen überprüfen @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Wie funktioniert das? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aktualisierung verfügbar @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Seitenleisten-Ansichten aktualisiert @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Fehler beim Aktualisieren der Seitenleisten-Ansichten @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Fehler beim Speichern der Einstellungen für die Aktualisierungsüberprüfung. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Wahr @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falsch @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Suche Dokumente... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nicht @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Abfrage hinzufügen @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Ausdruck hinzufügen @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Groß-/Kleinschreibung irrelevant @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Dokumenttyp zuweisen @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Korrespondent zuweisen @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-Mail @@ -4954,7 +4978,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 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Benutzerkonto bearbeiten @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP deaktiviert @@ -4978,11 +5002,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 +5040,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Auslösertyp @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Verzögerung (Tage) @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Bezogen auf @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Benutzerdefiniertes Feld @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Wiederkehrend @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Dateinamen filtern @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Quellen filtern @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Pfad filtern @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Inhaltsabgleichsalgorithmus @@ -5206,7 +5230,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Inhaltsabgleichsmuster @@ -5214,7 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Erweiterte Filter @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Filter hinzufügen @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Aktionstyp @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Titel zuweisen @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Tags zuweisen @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Speicherpfad zuweisen @@ -5286,7 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Eigentümer zuweisen @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Anzeigeberechtigungen zuweisen @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Bearbeitungsberechtigungen zuweisen @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Tags entfernen @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Korrespondenten entfernen @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Dokumenttypen entfernen @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Speicherpfade entfernen @@ -5382,7 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Eigentümer entfernen @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Berechtigungen entfernen @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Anzeigeberechtigungen @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Bearbeitungsberechtigungen @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 E-Mail-Betreff @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 E-Mail-Inhalt @@ -5438,7 +5462,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 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Dokument anhängen @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook-URL @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook-Parameter @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook-Inhalt @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook-Kopfzeilen @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Dokument einbeziehen @@ -5710,13 +5734,13 @@ Arbeitsablauf bearbeiten - + {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} src/app/components/common/email-document-dialog/email-document-dialog.component.html 2,6 - {VAR_PLURAL, plural, =1 {Document mailen} other { Dokumente mailen}} + {VAR_PLURAL, plural, =1 {Dokument mailen} other { Dokumente mailen}} Email address(es) @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Filter öffnen @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil erfolgreich aktualisiert @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Fehler beim Speichern des Profils @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Fehler beim Generieren des Authentifizierungstokens @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Fehler beim Trennen des Drittanbieterkontos @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Fehler beim Abrufen der TOTP-Einstellungen @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP erfolgreich aktiviert @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Fehler beim Aktivieren von TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP erfolgreich deaktiviert @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Fehler beim Deaktivieren von TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Drucken fehlgeschlagen. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Fehler beim Laden des Dokuments für den Druck. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Fehler beim Laden des TIFF: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Einschließen: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archivierte Dateien @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Originaldateien @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Verwende formatierten Dateinamen @@ -8669,6 +8693,14 @@ Alles auswählen + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Auswählen: + None @@ -8685,18 +8717,6 @@ Keiner - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Anzeigen - Sort @@ -9765,7 +9785,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Fehler beim Aktualisieren der Berechtigungen @@ -9905,7 +9925,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 erfolgreich erstellt. @@ -9913,7 +9933,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Fehler beim Erstellen von . @@ -9921,7 +9941,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 “ erfolgreich aktualisiert. @@ -9929,7 +9949,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Fehler beim Speichern von . @@ -9937,7 +9957,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Verknüpfte Dokumente werden nicht gelöscht. @@ -9945,7 +9965,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Fehler beim Löschen des Elements @@ -9953,7 +9973,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Berechtigungen wurden erfolgreich aktualisiert @@ -9961,7 +9981,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Dieser Vorgang wird alle Objekte unwiderruflich löschen. @@ -9969,7 +9989,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objekte erfolgreich gelöscht @@ -9977,7 +9997,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 00a9430cf..36e3737d9 100644 --- a/src-ui/src/locale/messages.el_GR.xlf +++ b/src-ui/src/locale/messages.el_GR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ρυθμίσεις @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Αρχεία Καταγραφής @@ -742,11 +742,35 @@ Ελέγξτε τα αρχεία καταγραφής για την εφαρμογή και για τον έλεγχο ηλεκτρονικού ταχυδρομείου. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Σφάλμα στην ανάκτηση χρηστών @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Σφάλμα κατά την ανάκτηση ομάδων @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Παρουσιάστηκε σφάλμα κατά την αποθήκευση των ρυθμίσεων. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Εργασίες Αρχείων @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Κάδος απορριμμάτων @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Επιβεβαίωση διαγραφής @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Χρήστες & Ομάδες @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Ο κωδικός πρόσβασης έχει αλλάξει, θα αποσυνδεθείτε αμέσως. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Αποθηκεύτηκε ο χρήστης "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Σφάλμα αποθήκευσης χρήστη. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Επιβεβαίωση διαγραφής λογαριασμού χρήστη @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Αυτή η λειτουργία θα διαγράψει μόνιμα αυτόν τον λογαριασμό χρήστη. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Αποθηκεύτηκε η ομάδα "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Σφάλμα αποθήκευσης ομάδας. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Επιβεβαίωση διαγραφής ομάδας χρηστών @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Αυτή η λειτουργία θα διαγράψει μόνιμα αυτήν την ομάδα χρηστών. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Τεκμηρίωση @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Αποθηκευμένες προβολές @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Άνοιγμα εγγράφων @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Κλείσιμο όλων @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Διαχείριση @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Αλληλογραφία @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 είναι διαθέσιμο. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Κάνε κλικ για προβολή. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Το Paperless-ngx μπορεί να ελέγξει αυτόματα για ενημερώσεις @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Πώς λειτουργεί; @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Υπάρχει διαθέσιμη ενημέρωση @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Παρουσιάστηκε σφάλμα κατά την αποθήκευση των ρυθμίσεων ελέγχου ενημερώσεων. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Χωρίς διάκριση πεζών/κεφαλαίων @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Ανάθεση τύπου εγγράφου @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Ανάθεση ανταποκριτή @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-mail @@ -4954,7 +4978,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Δημιουργία νέου λογαριασμού χρήστη @@ -4962,7 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Επεξεργασία λογαριασμού χρήστη @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Συμπερίληψη: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Επιλογή όλων + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Κανένα - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Δημιουργήθηκε επιτυχώς . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Παρουσιάστηκε σφάλμα κατά τη δημιουργία του . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Παρουσιάστηκε σφάλμα κατά την αποθήκευση του . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Σφάλμα κατά τη διαγραφή του στοιχείου @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 5c0d0fc1d..e0d4e07b9 100644 --- a/src-ui/src/locale/messages.es_ES.xlf +++ b/src-ui/src/locale/messages.es_ES.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ajustes @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Registros @@ -742,11 +742,35 @@ Revise los archivos de registro de la aplicación y de la comprobación de correo electrónico. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Mostrar + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error al obtener los usuarios @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error al obtener los grupos @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Se produjo un error al guardar los ajustes. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tareas de archivo @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papelera @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Confirmar borrado @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Usuarios & Grupos @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 La contraseña ha sido cambiada, tu sesión será cerrada en un momento. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Usuario guardado "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Error al guardar el usuario. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirmar eliminación de cuenta de usuario @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Esta operación eliminará permanentemente esta cuenta de usuario. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Usuario eliminado "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error al eliminar el usuario "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Grupo guardado "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Error al guardar el grupo. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirmar eliminación de grupo de usuarios @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Esta operación eliminará permanentemente este grupo de usuarios. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Grupo eliminado "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error al eliminar el grupo "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentación @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vistas guardadas @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Abrir documentos @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Cerrar todos @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Organizar @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Correo @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administración @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuración @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 está disponible. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Haz clic para ver. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx puede comprobar automáticamente si hay actualizaciones @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 ¿Cómo funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Actualización disponible @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vistas de la barra lateral actualizadas @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error al actualizar las vistas de la barra lateral @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Se produjo un error al guardar la configuración de comprobación de actualizaciones. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Verdadero @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Buscar documentos... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 No @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Añadir consulta @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Añadir expresión @@ -3978,7 +4002,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 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Asignar tipo de documento @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Asignar interlocutor @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-mail @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp desactivado @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Tipo de activador @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Desplazamiento días @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relativo a @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Campo personalizado @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurrente @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,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 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtrar fuentes @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtrar ruta @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,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 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Asignar título @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Asignar etiquetas @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Asignar dueño @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Eliminar etiquetas @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Eliminar interlocutores @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Eliminar propietarios @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Eliminar permisos @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Ver permisos @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Editar permisos @@ -5422,7 +5446,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 +5454,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 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Destinatarios de correo @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Adjuntar un documento @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL del webhook @@ -5462,7 +5486,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 +5494,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 +5502,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 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Cuerpo del webhook @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Encabezados del Webhook @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Incluir documento @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Abrir filtro @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6218,7 +6242,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 41 - Delete page + Eliminar página Add / remove document split here @@ -6234,7 +6258,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 70 - Split here + Dividir aquí Create new document(s) @@ -6258,7 +6282,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 94 - Copy metadata + Copiar metadatos Delete original @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Perfil actualizado correctamente @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error al guardar el perfil @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generando token de autenticación @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error al desconectar la cuenta de red social @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error obteniendo ajustes TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activado correctamente @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activando TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP desactivado correctamente @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error desactivando TOTP @@ -7444,7 +7468,7 @@ src/app/components/document-detail/document-detail.component.ts 1392 - PDF Editor + Editor de PDF Send @@ -8000,13 +8024,13 @@ 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. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Se ha producido un error al cargar el tif: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Incluir: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archivos archivados @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Archivos originales @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Usar nombre de archivo formateado @@ -8670,6 +8694,14 @@ Seleccionar todo + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ninguno - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostrar - Sort @@ -9316,7 +9336,7 @@ src/app/components/file-drop/file-drop.component.ts 142 - Failed to read dropped items: + Error al leer elementos soltados: correspondent @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error al actualizar permisos @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Creado correctamente . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Ha ocurrido un error al crear . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Actualizado correctamente "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Ha ocurrido un error al guardar . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Los documentos asociados no se eliminarán. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error al eliminar el elemento @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permisos correctamente actualizados @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Esta operación eliminará todos los objetos permanentemente. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objetos eliminados con éxito @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 Error al eliminar objetos @@ -10661,7 +10681,7 @@ src/app/data/paperless-config.ts 214 - Enable ASN + Habilitar ASN ASN Prefix @@ -10669,7 +10689,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 a98999562..498a30ef2 100644 --- a/src-ui/src/locale/messages.et_EE.xlf +++ b/src-ui/src/locale/messages.et_EE.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Settings @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error retrieving users @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error retrieving groups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Confirm delete @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Saved user "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Error saving user. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirm delete user account @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 This operation will permanently delete this user account. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Saved group "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Error saving group. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirm delete user group @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 This operation will permanently delete this user group. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saved views @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documents @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Close all @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Manage @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update available @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Case insensitive @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Email @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Include: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 95ad19a2f..8e8361bfa 100644 --- a/src-ui/src/locale/messages.fa_IR.xlf +++ b/src-ui/src/locale/messages.fa_IR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 تنظیمات @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 سیاهه ها @@ -742,11 +742,35 @@ پرونده های ورود به سیستم را برای برنامه و برای بررسی ایمیل مرور کنید. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + نشان دادن + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 خطا در بازیابی کاربران @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 گروه های بازیابی خطا @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 هنگام صرفه جویی در تنظیمات ، خطایی روی داد. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 وظایف پرونده @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 زباله @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 حذف را تأیید کنید @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 رمز عبور تغییر کرده است ، شما لحظه به لحظه از سیستم خارج می شوید. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Saved user "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 خطا در ذخیره کاربر. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 تأیید حساب کاربری را تأیید کنید @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 این عملیات به طور دائم این حساب کاربری را حذف می کند. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Saved group "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 گروه صرفه جویی در خطا. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 تأیید گروه کاربر را تأیید کنید @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 این عمل به طور دائم این گروه کاربر را حذف می کند. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 مستند سازی @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 نماهای ذخیره شده @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 اسناد باز @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 همه را ببندید @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 مدیریت کردن @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 پست @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 تجویز @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 پیکربندی @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 لوب @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 موجود است @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 برای مشاهده کلیک کنید @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-NGX به طور خودکار می تواند به روزرسانی ها را بررسی کند @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 این چگونه کار می کند؟ @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 به روز رسانی موجود است @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 نمای نوار کناری به روز شده است @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 خطا به روزرسانی نماهای نوار کناری @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 هنگام ذخیره تنظیمات بررسی به روزرسانی ، خطایی روی داد. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 درست @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 دروغ @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 اسناد جستجو ... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 نه @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 اضافه کردن پرس و جو @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 بیان را اضافه کنید @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 غیر حساس @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 نوع سند را اختصاص دهید @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 خبرنگار را اختصاص دهید @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 ایمیل @@ -4954,7 +4978,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 حساب کاربری جدید ایجاد کنید @@ -4962,7 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 ویرایش حساب کاربری @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP غیرفعال @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 نوع ماشه @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 روزهای جبران @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 نسبت به @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 قسمت سفارشی @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 عود @@ -5110,7 +5134,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 ماشه در حال تکرار است. @@ -5118,7 +5142,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 روزهای مکرر @@ -5126,7 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 نام پرونده فیلتر @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 منابع فیلتر @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 مسیر فیلتر @@ -5174,7 +5198,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 +5206,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 قانون نامه نامه فیلتر @@ -5190,7 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 الگوریتم تطبیق محتوا @@ -5206,7 +5230,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 الگوی تطبیق محتوا @@ -5214,7 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 نوع عمل @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 عنوان اختصاص دادن @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 اختصاص برچسب ها @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 مسیر ذخیره سازی را اختصاص دهید @@ -5286,7 +5310,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 اختصاص زمینه های سفارشی @@ -5294,7 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 مالک @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 مجوزهای مشاهده را اختصاص دهید @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 مجوزهای ویرایش را اختصاص دهید @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 حذف برچسب ها @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 خبرنگاران را حذف کنید @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 حذف انواع سند @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 مسیرهای ذخیره سازی را حذف کنید @@ -5382,7 +5406,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 زمینه های سفارشی را حذف کنید @@ -5390,7 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 صاحبان را حذف کنید @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 مجوزها را حذف کنید @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 مشاهده مجوزها @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 مجوزها را ویرایش کنید @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 موضوع ایمیل @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 بدنه ایمیل @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 دریافت کنندگان ایمیل @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 سند پیوست @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL Webhook @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 پارامترهای وب @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 بدنه وب @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 هدرهای Webhook @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 شامل سند @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 پروفایل با موفقیت به روز شد @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 نمایه ذخیره خطا @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 خطای ایجاد کننده AUTH @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 قطع خطا حساب اجتماعی @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 خطا در تنظیمات TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP با موفقیت فعال شد @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 خطا در فعال کردن TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP با موفقیت غیرفعال شد @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 خطای غیرفعال کردن TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 شامل: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 پرونده های بایگانی شده @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 پرونده های اصلی @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 از نام پرونده فرمت شده استفاده کنید @@ -8670,6 +8694,14 @@ همه را انتخاب کنید + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ هیچ کدام - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - نشان دادن - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 خطای به روزرسانی مجوزها @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 اسناد مرتبط حذف نمی شوند. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 خطا هنگام حذف عنصر @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 مجوزها با موفقیت به روز شد @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 این عمل به طور دائم تمام اشیاء را حذف می کند. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 اشیاء با موفقیت حذف شدند @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 خطای حذف اشیاء diff --git a/src-ui/src/locale/messages.fi_FI.xlf b/src-ui/src/locale/messages.fi_FI.xlf index c247af354..0cf0b9de4 100644 --- a/src-ui/src/locale/messages.fi_FI.xlf +++ b/src-ui/src/locale/messages.fi_FI.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Asetukset @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Lokit @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Näytä + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Virhe käyttäjiä noutaessa @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Virhe ryhmiä noutaessa @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Virhe tallennettaessa asetuksia. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tiedostotehtävät @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Vahvista poisto @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Käyttäjät & ryhmät @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Salasana on vaihdettu, sinut kirjataan ulos hetken kuluttua. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Tallennettu käyttäjä "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Virhe tallentaessa käyttäjää. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Vahvista käyttäjätilin poistaminen @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Tämä toiminto poistaa pysyvästi tämän käyttäjätilin. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Virhe poistaessa käyttäjää "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Tallennettu ryhmä "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Virhe tallentaessa ryhmää. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Vahvista käyttäjäryhmän poistaminen @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Tämä toiminto poistaa pysyvästi tämän käyttäjäryhmän. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Poistettu ryhmä "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Virhe poistaessa ryhmää "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentaatio @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Tallennetut näkymät @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Avaa asiakirjat @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Sulje kaikki @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Hallitse @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Sähköposti @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Ylläpito @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 on saatavilla. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Näytä klikkaamalla. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx voi tarkistaa päivitykset automaattisesti @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kuinka tämä toimii? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Päivitys saatavilla @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Virhe tallennettaessa päivitystarkistuksen asetuksia @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Kirjainkoko ei vaikuta @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Määritä asiakirjatyyppi @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Määritä yhteyshenkilö @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Sähköposti @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Mukautettu kenttä @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Suodata tiedostonimi @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Suodata lähteet @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Suodata polku @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Määritä omistaja @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Poista tunnisteet @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Poista omistajat @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Poista oikeudet @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Näytä oikeudet @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Muokkaa oikeuksia @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profiili päivitetty onnistuneesti @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Virhe profiilia tallentaessa @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Virhe yhteyttä sosiaaliseen tiliin katkaistaessa @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Sisällytä: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Arkistoidut tiedostot @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Alkuperäiset tiedostot @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Käytä muotoiltua tiedostonimeä @@ -8670,6 +8694,14 @@ Valitse kaikki + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ei mitään - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Näytä - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Virhe käyttöoikeuksia päivittäessä @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Onnistuneesti luotu . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Virhe luotaessa . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Virhe tallennettaessa : . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Virhe elementtiä poistaessa @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Käyttöoikeudet päivitettiin onnistuneesti @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 e12d9b690..93b0d4b96 100644 --- a/src-ui/src/locale/messages.fr_FR.xlf +++ b/src-ui/src/locale/messages.fr_FR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Paramètres @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Journaux @@ -742,11 +742,35 @@ Consultez les journaux de l'application ainsi que ceux des courriels. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Afficher + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lignes + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Erreur lors de la récupération des utilisateurs @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Erreur lors de la récupération des groupes @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Une erreur est survenue lors de la sauvegarde des paramètres. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tâches sur les fichiers @@ -2124,7 +2148,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 +2156,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Erreur lors du rejet de la tâche queued @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Corbeille @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Confirmer la suppression @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utilisateurs & Groupes @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Le mot de passe a été modifié, vous serez déconnecté momentanément. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Utilisateur « » enregistré. @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Erreur lors de l'enregistrement de l'utilisateur. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirmer la suppression du compte utilisateur @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Cette opération supprimera définitivement ce compte utilisateur. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Groupe «  » supprimé @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Erreur lors de la supression de l’utilisateur «  ». @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Groupe « » enregistré. @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Erreur lors de l'enregistrement du groupe. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirmer la suppression du groupe d'utilisateurs @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Cette opération supprimera définitivement ce groupe d'utilisateurs. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Groupe «  » supprimé @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Erreur lors de la supression du groupe «  ». @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vues enregistrées @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Documents ouverts @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tout fermer @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gestion @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Courriel @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 est disponible. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Cliquer pour visualiser. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx peut automatiquement vérifier la disponibilité des mises à jour @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Comment ça fonctionne ? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Mise à jour disponible @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vues sur la barre latérale mises à jour @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Erreur lors de la mise à jour des vues de la barre latérale @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Une erreur s'est produite lors de l'enregistrement des paramètres de vérification des mises à jour. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Vrai @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Faux @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Rechercher un document... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Non @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Ajouter une requête @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Ajouter une expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Insensible à la casse @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Affectation du type de document @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Affecter le correspondant @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Adresse électronique @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP désactivé @@ -4978,11 +5002,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 +5070,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 +5078,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 +5086,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 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relatif à @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Champ personnalisé @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Récurrent @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,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 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtrer les sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtrer le chemin @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,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 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Attribuer un titre @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assigner des étiquettes @@ -5278,7 +5302,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 +5310,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 +5318,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 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Supprimer des étiquettes @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Supprimer des correspondants @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,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 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Supprimer des autorisations @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Autorisations de consultation @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Autorisations de modification @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Objet du courriel @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Corps du courriel @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Destinatires du courriel @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Joindre un document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL du Webhook @@ -5462,7 +5486,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 +5494,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 +5502,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 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Corps du Webhook @@ -5494,7 +5518,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 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Inclure le document @@ -5620,7 +5644,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 +5652,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 +5660,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 +5676,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 +5692,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 +5708,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 +5716,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 +5740,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 +5792,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 +5808,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 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Ouvrir le filtre @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil mis à jour avec succès @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Erreur lors de l'enregistrement du profil @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Erreur lors de la génération du jeton d'authentification @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Erreur lors de la déconnexion du compte social @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Erreur lors de la récupération des paramètres du TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activé avec succès @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Erreur lors de l’activation du TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP désactivé avec succès @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Erreur lors de la désactivation du TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Impression échouée. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Erreur lors du chargement du document pour impression. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Une erreur s’est produite lors du chargement du tiff : @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Inclure : @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Fichiers archivés @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Fichiers originaux @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Utiliser le nom de fichier formaté @@ -8669,6 +8693,14 @@ Sélectionner tout + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Sélectionner : + None @@ -8685,18 +8717,6 @@ Aucun - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Afficher - Sort @@ -9765,7 +9785,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Erreur lors de la mise à jour des droits d'accès @@ -9783,7 +9803,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 20 - No processed email messages found. + Received @@ -9905,7 +9925,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Création de réussie. @@ -9913,7 +9933,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Une erreur s'est produite lors de la création de . @@ -9921,7 +9941,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Mise à jour réussie pour "". @@ -9929,7 +9949,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Une erreur s'est produite lors de la sauvegarde de . @@ -9937,7 +9957,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Les documents associés ne seront pas supprimés. @@ -9945,7 +9965,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Erreur lors de la suppression de l'élément @@ -9953,7 +9973,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Les droits d'accès ont bien été mis à jour @@ -9961,7 +9981,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Cette opération supprimera définitivement tous les objets. @@ -9969,7 +9989,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects supprimés avec succès @@ -9977,7 +9997,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 d719d228c..feba8cfbe 100644 --- a/src-ui/src/locale/messages.he_IL.xlf +++ b/src-ui/src/locale/messages.he_IL.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 הגדרות @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 יומני רישום @@ -742,11 +742,35 @@ עיין בקובצי הלוג של היישום ולבדיקת דואר אלקטרוני. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + הצג + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 שגיאה באחזור משתמשים @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 שגיאה באחזור קבוצות @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 התרחשה שגיאה בעת שמירת ההגדרות: @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 משימות קבצים @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 אשפה @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 אישור מחיקה @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 משתמשים & קבוצות @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 הסיסמה השתנתה. אתה תנותק מהמערכת בתוך זמן קצר @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 משתמש שמור "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 שגיאה בשמירת משתמש @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 אשר מחיקת חשבון משתמש @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 הפעולה הזאת תמחק את המשתמש הזה לצמיתות. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 משתמש "" נמחק @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 שגיאה במחיקת משתמש "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 קבוצה שמורה "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 שגיאה בשמירת קבוצה. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 אשר מחיקת קבוצת משתמשים @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 הפעולה הזאת תמחק את קבוצת המשתמשים הזו לצמיתות. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 קבוצה "" נמחקה @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 שגיאה במחיקת הקבוצה "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 תיעוד @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 תצוגות שמורות @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 מסמכים פתוחים @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 סגור הכל @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 נהל @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 דואר @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 ניהול @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 הגדרות @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 זמין. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 לחץ להצגה. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx יכול לבדוק אוטומטית אם יש עדכונים @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 איך זה עובד? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 קיים עדכון @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 תצוגת סרגל צד עודכנה @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 שגיאה בעדכון תצוגת סרגל צד @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 ארעה שגיאה בתהליך השמירה. בודק הגדרות @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 אמת @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 שקר @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 חפש מסמכים... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 לא @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 הוסף שאילתה @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 הוסף ביטוי @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 חסר רגישות תווים גדולים/קטנים (אנגלית) @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 שייך סוג מסמך @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 שייך מכותב זה @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 דוא"ל @@ -4954,7 +4978,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 צור חשבון חדש @@ -4962,7 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 ערוך את החשבון @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp בוטל @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 סוג טריגר @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 ימי היסט @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 ביחס ל @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 שדה מותאם אישית @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 מחזורי @@ -5110,7 +5134,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 הטריגר חוזר על עצמו. @@ -5118,7 +5142,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 מחזור ימי מרווח @@ -5126,7 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 סנן לפי שם קובץ @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 מקורות מסננים @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 מסנן לפי נתיב שמירה @@ -5174,7 +5198,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 +5206,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 סנן לפי כלל דואל @@ -5190,7 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 אלגוריתם התאמת תוכן @@ -5206,7 +5230,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 תבנית התאמת תוכן @@ -5214,7 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 סוג פעולה @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 הקצה כותרת @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 הקצה תגיות @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 הקצה נתיב אחסון @@ -5286,7 +5310,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 הקצה שדות מותאמים אישית @@ -5294,7 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 הקצה בעלים @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 הקצה הרשאות צפיה למשתמש @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 הקצה הרשאות עריכה למשתמש @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 הסירו תגיות @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 הסר מכותבים @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 הסר סוגי מסמכים @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 הסר מיקום אכסון @@ -5382,7 +5406,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 הסרת שדות מותאמים אישית @@ -5390,7 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 הסר בעלים @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 הסר הרשאות @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 צפה בהרשאות @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 ערוך הרשאות @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 נושא הדוא"ל @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 גוף אימייל @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 נמעני אימייל @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 צרף קובץ @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 כתובת ווב-הוק @@ -5462,7 +5486,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 שימוש בפרמטרים עבור גוף הווב-הוק @@ -5470,7 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 פרמטרים של הווב-הוק @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 גוף הווב-הוק @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 כותרות הווב-הוק @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 כלול מסמך @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 פתחו מסנן @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 פרופיל עודכן בהצלחה @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 שגיאה בשמירת פרופיל @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 שגיאה ביצירת אסימון אימות @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 שגיאה בניתוק חשבון חברתי @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 שגיאה באחזור הגדרות TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP הופעל בהצלחה @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 שגיאה בהפעלת TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP הושבת בהצלחה @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 שגיאה בהשבתת TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 הדפסה נכשלה. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 שגיאה בעת טעינת קובץ tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 כולל: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 קובצי ארכיון @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 קבצים מקוריים @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 השתמש בשם קובץ מפורמט @@ -8670,6 +8694,14 @@ בחר הכל + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ ללא - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - הצג - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 שגיאת שינוי הרשאות @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 נוצר בהצלחה: . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 אירעה שגיאה ביצירת: . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 חלה שגיאה בשמירת . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 מסמכים קשורים לא יימחקו. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 שגיאה בניסיון למחוק את הפריט @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 ההרשאות עודכנו בהצלחה @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 פעולה זו תמחק לצמיתות את כל האובייקטים. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 הפריטים נמחקו בהצלחה @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 שגיאה במחיקת פריטים diff --git a/src-ui/src/locale/messages.hr_HR.xlf b/src-ui/src/locale/messages.hr_HR.xlf index c5bf6a2bf..f5329341e 100644 --- a/src-ui/src/locale/messages.hr_HR.xlf +++ b/src-ui/src/locale/messages.hr_HR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Postavke @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Zapisnici @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error retrieving users @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error retrieving groups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Došlo je do pogreške prilikom spremanja postavki. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Zadaci datoteke @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Confirm delete @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Saved user "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Error saving user. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirm delete user account @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 This operation will permanently delete this user account. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Saved group "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Error saving group. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirm delete user group @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 This operation will permanently delete this user group. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Spremljeni prikazi @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otvoreni dokumenti @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zatvori sve @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Upravljaj @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je dostupno. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikni za prikaz. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx može automatski provjeriti aktualizaciju @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kako ovo radi? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Dostupno ažuriranje @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Došlo je do pogreške prilikom spremanja postavki ažuriranja. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,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 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Email @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Uključi: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ništa - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 8dd3c65a0..11a7663af 100644 --- a/src-ui/src/locale/messages.hu_HU.xlf +++ b/src-ui/src/locale/messages.hu_HU.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Beállítások @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Naplók @@ -742,11 +742,35 @@ Ellenőrizd az alkalmazás és az e-mail lekérdezés naplófájljait. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Mutat + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Hiba a felhasználók lekérdezésében @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Hiba a csoportok lekérdezésében @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Hiba történt a beállítások mentése közben. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Fájl feladatok @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Lomtár @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Törlés megerősítése @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Felhasználók & Csoportok @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 A jelszó megváltozott, Önt kiléptetjük a rendszerből. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Mentett felhasználó "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Hiba a felhasználó mentésekor. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Felhasználói fiók törlésének megerősítése @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Ez a művelet véglegesen törli ezt a felhasználói fiókot. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 "" felhasználó törölve @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Hiba "" felhasználó törlésekor @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Mentett csoport "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Hiba a csoport mentésekor. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Felhasználói csoport törlésének megerősítése @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Ez a művelet véglegesen törli ezt a felhasználói csoportot. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 "" csoport törölve @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Hiba "" csoport törlésekor @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentáció @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Mentett nézetek @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Dokumentumok megnyitása @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Bezár mindent @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Kezelés @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Adminisztráció @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Beállítások @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 rendelkezésre áll. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Kattintson a megtekintéshez. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 A Paperless-ngx automatikusan ellenőrizni tudja a frissítéseket @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hogyan működik ez? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Frissítés elérhető @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Oldalsáv nézetek frissítve @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Hiba az oldalsáv nézetek frissítésében @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Hiba történt a frissítési ellenőrzési beállítások mentése közben. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Igaz @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Hamis @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Keresés a doksiban... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nem @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Lekérdezés hozzáadása @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Kifejezés hozzáadása @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Nagy- és kisbetű érzéketlen @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Dokumentumtípus hozzárendelése @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Levelező kijelölése @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-mail @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp letiltva @@ -4978,11 +5002,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 +5070,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 +5078,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 +5086,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 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Ehhez képest @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Egyéni mező @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Ismétlődő @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,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 +5174,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 +5182,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 +5190,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 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,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 +5278,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 +5286,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 +5294,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 +5302,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 +5310,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 +5318,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 +5326,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 +5334,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 +5342,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 +5350,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 +5382,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 +5390,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 +5398,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 +5406,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 +5414,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 +5422,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 +5430,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 +5438,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 +5446,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 +5454,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 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email címzettek @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Dokumentum csatolása @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook paraméterek @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook törzse @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook fejlécei @@ -5502,7 +5526,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 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 filter megnyitása @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil frissítése sikeresen megtörtént @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Hiba a profil mentésekor @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Hiba az auth token létrehozásakor @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Hiba a közösségi fiók szétkapcsolásakor @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Hiba a TOTP beállítások lekérésekor @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP aktiválása sikeres @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Sikertelen TOTP aktiválás @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deaktiválása sikeres @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Sikertelen TOTP deaktiválás @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Hiba tiff betöltésekor: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Tartalmazza: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archivált fájlok @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Eredeti fájlok @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Formázott fájlnév használata @@ -8670,6 +8694,14 @@ Összes kiválasztása + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Nincs - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mutat - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Hiba az engedélyek frissítésében @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Sikeresen létrehozta a . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Hiba történt a létrehozásakor. @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 "" sikeresen frissítve. @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Hiba történt a mentése közben. @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 A kapcsolódó dokumentumok nem kerülnek törlésre. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Hiba elem törlése közben @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Az engedélyek sikeresen frissültek @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Ez a művelet véglegesen törli az összes objektumot. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objektumok sikeresen törölve @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 0278433e3..ba1a70a96 100644 --- a/src-ui/src/locale/messages.id_ID.xlf +++ b/src-ui/src/locale/messages.id_ID.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Pengaturan @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Log @@ -742,11 +742,35 @@ Silahkan lihat kembali log file aplikasi dan log email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Tampilkan + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Kesalahan saat mendapatkan pengguna @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Gagal mengambil daftar grup @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Sebuah kesalahan terjadi saat menyimpan setelan. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tugas File @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Sampah @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Konfirmasi hapus @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Kata sandi telah diubah, anda akan dikeluarkan sesaat lagi. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Pengguna yang tersimpan "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Kesalahan saat menyimpan pengguna. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Konfirmasi hapus akun pengguna @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Tindakan ini akan menghapus secara permanen akun pengguna ini. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Gagal menghapus pengguna "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Gagal menghapus pengguna "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Tersimpan grup "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Kesalahan saat menyimpan grup. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Konfirmasi hapus grup pengguna @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Tindakan ini akan menghapus permanen akun pengguna ini. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Grup "" dihapus @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Gagal menghapus grup "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentasi @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Tampilan disimpan @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Buka dokumen @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tutup semua @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Kelola @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Surel @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrasi @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurasi @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 telah tersedia. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Ketuk untuk melihat. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx dapat secara otomatis memeriksa pembaruan @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Bagaimana ini dapat bekerja? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Pembaruan tersedia @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Tampilan bilah samping telah diperbarui @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Kesalahan saat memperbarui tampilan sisi @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Terjadi kesalahan saat menyimpan setelan pemeriksaan pembaruan. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Benar @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Salah @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Cari dokumen... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Tidak @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Tambah permintaan @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Tambah ekspresi @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Tidak membedakan huruf besar kecil @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Tetapkan jenis dokumen @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Tetapkan koresponden @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Surel @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp dinonaktifkan @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Jenis pemicu @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Hari jeda @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relatif terhadap @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Bidang khusus @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Berulang @@ -5110,7 +5134,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Pemicu berulang. @@ -5118,7 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter nama berkas @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sumber @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter lokasi @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Filter Lanjutan @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Tambah Filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Jenis aksi @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Tetapkan judul @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Tetapkan label @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Tetapkan pemilik @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Hapus label @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Hapus koresponden @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Hapus pemilik @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Hapus izin @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Lihat izin @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Sunting izin @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Subjek email @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Isi email @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Penerima email @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Lampirkan dokumen @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Url webhook @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parameter webhook @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Isi webhook @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Header webhook @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Sertakan dokumen @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Buka saring @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil berhasil diperbarui @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Kesalahan saat menyimpan profil @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Kesalahan saat membuat token autentikasi @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Kesalahan saat melepaskan akun sosial @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Gagal mengambil pengaturan TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP berhasil diaktifkan @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Gagal mengaktifkan TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP berhasil dinonaktifkan @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Gagal menonaktifkan TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Pencetakan gagal. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error memuat dokumen untuk dicetak. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Terjadi kesalahan saat memuat tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Sertakan: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Berkas terarsip @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Berkas asli @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Gunakan nama berkas terformat @@ -8669,6 +8693,14 @@ Pilih semua + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Tidak ada - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Tampilkan - Sort @@ -9765,7 +9785,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9905,7 +9925,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9913,7 +9933,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9921,7 +9941,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9929,7 +9949,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9937,7 +9957,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9945,7 +9965,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9953,7 +9973,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9961,7 +9981,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9969,7 +9989,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9977,7 +9997,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 d24fe56f3..c79e07224 100644 --- a/src-ui/src/locale/messages.it_IT.xlf +++ b/src-ui/src/locale/messages.it_IT.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Impostazioni @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Log @@ -742,11 +742,35 @@ Esaminare i file di registro per l'applicazione e per il controllo della posta elettronica. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Mostra + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + righe + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Errore nel recupero degli utenti @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Errore nel recupero dei gruppi @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Si è verificato un errore durante il salvataggio delle impostazioni. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Attività File @@ -2124,7 +2148,7 @@ src/app/components/admin/tasks/tasks.component.ts 161 - Error dismissing tasks + Errore nel rimuovere l'attività Error dismissing task @@ -2132,7 +2156,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Errore nel rimuovere le attività queued @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Cestino @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Conferma eliminazione @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utenti & gruppi @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 La password è stata cambiata, sarai disconnesso momentaneamente. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Salvato utente "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Errore durante il salvataggio dell'utente. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Conferma eliminazione account utente @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Questa operazione eliminerà definitivamente l'account utente. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Utente "" eliminato @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Errore durante l'eliminazione dell'utente "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Salvato gruppo "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Errore durante il salvataggio del gruppo. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Conferma eliminazione gruppo utenti @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Questa operazione eliminerà definitivamente il gruppo. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Gruppo "" eliminato @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Errore durante l'eliminazione del gruppo "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentazione @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Viste salvate @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Apri documenti @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Chiudi tutti @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gestisci @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Amministrazione @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configurazione @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 è disponibile. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Clicca per visualizzare. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx può controllare automaticamente la presenza di aggiornamenti @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Come funziona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aggiornamento disponibile @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Viste barra laterale aggiornate @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Errore nell'aggiornamento delle viste della barra laterale @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Si è verificato un errore durante il salvataggio delle impostazioni sugli aggiornamenti. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Vero @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Ricerca di documenti... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Non @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Aggiungi query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Aggiungi espressione @@ -3978,7 +4002,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 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assegna tipo di documento @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assegna corrispondente @@ -4482,7 +4506,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 +4816,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 15 - Parent + Parent Inbox tag @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Email @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP disattivato @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Tipo di trigger @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset in giorni @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relativo a @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Campo personalizzato @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Ricorrente @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtra nome file @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtra sorgenti @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtro percorso @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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,39 +5238,39 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 - Advanced Filters + Filtri Avanzati Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 - Add filter + Aggiungi filtro 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. + Nessun filtro avanzato del workflow definito. 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. + Completa la configurazione della query di campo personalizzato. Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tipo di Azione @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assegna titolo @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assegna tag @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assegna proprietario @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Rimuovi tag @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Rimuovi corrispondenti @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Rimuovi proprietari @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Rimuovi permessi @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Visualizza permessi @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Modifica permessi @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Oggetto email @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Corpo e-mail @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Destinatari email @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Allega documento @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook URL @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parametri Webhook @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Corpo Webhook @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Header Webhook @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Includi documento @@ -5620,7 +5644,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 203 - Has any of these tags + Ha qualcuna di queste etichette Has all of these tags @@ -5628,7 +5652,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 210 - Has all of these tags + Ha tutte queste etichette Does not have these tags @@ -5636,7 +5660,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 217 - Does not have these tags + Non ha queste etichette Has correspondent @@ -5652,7 +5676,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 232 - Does not have correspondents + Non ha corrispondenti Has document type @@ -5668,7 +5692,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 248 - Does not have document types + Non ha questi tipi di documento Has storage path @@ -5676,7 +5700,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 256 - Has storage path + Ha percorso di archiviazione Does not have storage paths @@ -5684,7 +5708,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 264 - Does not have storage paths + Non ha percorso di archiviazione Matches custom field query @@ -5692,7 +5716,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 272 - Matches custom field query + Corrisponde a campo personalizzato Create new workflow @@ -5768,7 +5792,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 37 - Some email servers may reject messages with large attachments. + Alcuni server di posta elettronica possono rifiutare messaggi con allegati di grandi dimensioni. Email sent @@ -5784,7 +5808,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.ts 69 - Error emailing documents + Errore durante l'invio dei documenti Error emailing document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Apri filtro @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profilo aggiornato con successo @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Errore durante il salvataggio del profilo @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Errore nella generazione del token di autenticazione @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Errore disconnessione account social @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Errore nel recupero delle impostazioni TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP attivato con successo @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Errore nell'attivazione del TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP disattivato con successo @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Errore nella disattivazione del TOTP @@ -7038,7 +7062,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 261 - OK + Ok Copy Raw Error @@ -7420,7 +7444,7 @@ src/app/components/document-detail/document-detail.component.html 58 - Print + Stampa More like this @@ -8006,27 +8030,27 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 - Print failed. + Stampa non riuscita. Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 - Error loading document for printing. + Errore nel caricamento del documento per la stampa. An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Errore durante il caricamento della TIFF: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Includere: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 File archiviati @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 File originali @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Usa nome file formattato @@ -8669,6 +8693,14 @@ Seleziona tutti + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Seleziona: + None @@ -8685,18 +8717,6 @@ Niente - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostra - Sort @@ -9571,7 +9591,7 @@ src/app/components/manage/mail/mail.component.html 143 - View Processed Mail + Visualizza Email Elaborata No mail rules defined. @@ -9765,7 +9785,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Errore durante l'aggiornamento dei permnessi @@ -9783,7 +9803,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 20 - No processed email messages found. + Nessun messaggio email elaborato trovato. Received @@ -9791,7 +9811,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 33 - Received + Ricevuto Processed @@ -9799,7 +9819,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 34 - Processed + Elaborato Processed mail(s) deleted @@ -9807,7 +9827,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts 72 - Processed mail(s) deleted + Email processate cancellate Filter by: @@ -9905,7 +9925,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 è stato creato con successo. @@ -9913,7 +9933,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Errore durante la creazione di . @@ -9921,7 +9941,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 "" aggiornato con successo. @@ -9929,7 +9949,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Errore durante e il salvataggio di . @@ -9937,7 +9957,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 I documenti associati non verranno eliminati. @@ -9945,7 +9965,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Errore durante l'eliminazione dell'elemento @@ -9953,7 +9973,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permessi aggiornati @@ -9961,7 +9981,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Questa operazione eliminerà permanentemente tutti gli oggetti. @@ -9969,7 +9989,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Oggetti eliminati con successo @@ -9977,7 +9997,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 Errore nell'eliminazione degli oggetti @@ -10379,7 +10399,7 @@ src/app/data/custom-field.ts 55 - Long Text + Testo Lungo Search score diff --git a/src-ui/src/locale/messages.ja_JP.xlf b/src-ui/src/locale/messages.ja_JP.xlf index 245526d97..c7f305d58 100644 --- a/src-ui/src/locale/messages.ja_JP.xlf +++ b/src-ui/src/locale/messages.ja_JP.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 システム設定 @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 ログ @@ -742,11 +742,35 @@ アプリケーションとメールチェックのログファイルを確認してください + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + 表示 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 ユーザーの取得に失敗しました @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 グループの取得に失敗しました @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 設定の保存中にエラーが発生しました @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 ファイルタスク @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 ごみ箱 @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 本当に削除しますか? @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 ユーザー & グループ @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 パスワードが変更されました。一時的にログアウトされます。 @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 ユーザー "" を保存しました @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 ユーザーの保存に失敗しました @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 ユーザーアカウントを削除しますか? @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 この操作により、このユーザーアカウントは完全に削除されます。 @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 ユーザー「」を削除しました @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 ユーザー「」の削除中にエラーが発生しました。 @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 グループ "" を保存しました @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 グループの保存に失敗しました @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 グループを削除しますか? @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 この操作により、このグループは完全に削除されます。 @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 グループ「」を削除しました @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 グループ「」の削除中にエラーが発生しました。 @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 マニュアル @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 保存済みビュー @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 開いているドキュメント @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 すべて閉じる @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 ドキュメント管理 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 メール @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 システム管理 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 設定 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 が利用可能です。 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 クリックして表示 @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngxは自動的にアップデートを確認できます @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 アップデートの自動確認機能について @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 アップデートがあります。 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 サイドバービューを更新しました @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 サイドバービューの更新に失敗しました @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 アップデートの確認設定の保存中にエラーが発生しました @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 ドキュメントを検索... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 クエリの追加 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 式の追加 @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 大文字・小文字を区別しない @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 ドキュメントタイプの割り当て @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 発信元の割り当て @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 メールアドレス @@ -4954,7 +4978,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 新規ユーザーアカウントの作成 @@ -4962,7 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 ユーザーアカウントの編集 @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTPが無効です @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 トリガーの種類 @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 オフセット日 @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 相対的に @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 カスタムフィールド @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 繰り返し @@ -5110,7 +5134,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 トリガーは繰り返します。 @@ -5118,7 +5142,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 繰り返しの間隔 @@ -5126,7 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 ファイル名のフィルター @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 ソースのフィルター @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 パスのフィルター @@ -5174,7 +5198,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 +5206,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 メールルールのフィルター @@ -5190,7 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 内容のマッチングアルゴリズム @@ -5206,7 +5230,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 内容のマッチングパターン @@ -5214,7 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 アクションの種類 @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 タイトルの割り当て @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 タグの割り当て @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 フォルダーの割り当て @@ -5286,7 +5310,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 カスタム項目の割り当て @@ -5294,7 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 所有者の割り当て @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 表示権限の割り当て @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 編集権限の割り当て @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 タグの削除 @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 発信元の削除 @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 ドキュメントタイプの削除 @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 フォルダーの削除 @@ -5382,7 +5406,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 カスタム項目の削除 @@ -5390,7 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 所有者の削除 @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 権限の削除 @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 権限の表示 @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 権限の編集 @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 メールの件名 @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 メール本文 @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 メール受信者 @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 ドキュメントを添付 @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook URL @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhookパラメータ @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook本文 @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhookヘッダー @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 ドキュメントを含める @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 フィルタを開く @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 プロフィールは正常に更新されました @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 プロフィールの保存に失敗しました @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 認証トークンの生成に失敗しました @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 ソーシャルアカウントの接続解除に失敗しました @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 TOTP設定の取得中にエラーが発生しました @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTPが正常に有効になりました @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 TOTPの有効化に失敗しました @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTPを無効にしました @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 TOTPの無効化に失敗しました @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 TIFFの読み込み中にエラーが発生しました: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 以下を含める: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 アーカイブされたファイル @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 元のファイル @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 フォーマット済みのファイル名を使用 @@ -8669,6 +8693,14 @@ すべて選択 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ なし - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 表示 - Sort @@ -9765,7 +9785,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 権限の更新に失敗しました @@ -9905,7 +9925,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 は正常に作成されました @@ -9913,7 +9933,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 の作成中にエラーが発生しました @@ -9921,7 +9941,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 "" を正常に更新しました。 @@ -9929,7 +9949,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 の保存中にエラーが発生しました @@ -9937,7 +9957,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 割り当てられたドキュメントは削除されません @@ -9945,7 +9965,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 要素の削除中にエラーが発生しました @@ -9953,7 +9973,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 権限は正常に更新されました @@ -9961,7 +9981,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 この操作により、すべてのオブジェクトは完全に削除されます。 @@ -9969,7 +9989,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 オブジェクトは正常に削除されました @@ -9977,7 +9997,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 オブジェクトの削除に失敗しました diff --git a/src-ui/src/locale/messages.ko_KR.xlf b/src-ui/src/locale/messages.ko_KR.xlf index 901fce1b4..89df9bf93 100644 --- a/src-ui/src/locale/messages.ko_KR.xlf +++ b/src-ui/src/locale/messages.ko_KR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 설정 @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 로그 @@ -742,11 +742,35 @@ 애플리케이션 및 이메일 확인을 위한 로그 파일을 검토합니다. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + 표시 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 사용자 검색 오류 @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 그룹 검색 오류 @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 설정을 저장하는 중 오류가 발생하였습니다. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 1 @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 휴지통 @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 삭제 검토 @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 사용자 & 그룹 @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 비밀번호가 변경되었습니다. 곧 로그아웃됩니다. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 사용자 ""가 저장되었습니다. @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 사용자 저장 에러. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 사용자 계정 삭제 검토 @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 이 작업은 사용자 계정을 영구적으로 삭제합니다. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 삭제된 사용자 """ @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 사용자 "" 삭제 중 오류가 발생했습니다. @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 그룹 ""가 저장되었습니다. @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 그룹을 저장하는데 오류가 발생했습니다. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 사용자 그룹 삭제 검토 @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 이 작업은 사용자 그룹을 영구적으로 삭제합니다. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 삭제된 그룹 """ @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 그룹 "" 삭제 중 오류가 발생했습니다. @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 문서 @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 저장된 보기 @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 문서 열기 @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 모두 닫기 @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 관리 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 메일 @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 관리 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 환경설정 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 사용 가능함 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 클릭해서 보기. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx는 자동으로 최신 업데이트를 확인할 수 있습니다. @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 어떻게 작동할까요? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 업데이트 가능 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 사이드바 업데이트 완료 @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 사이드바 업데이트 중 오류가 발생했습니다 @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 설정을 저장하는 중 오류가 발생하였습니다. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 거짓 @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 문서 검색... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 아님 @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 쿼리 추가 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 표현식 추가 @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 대소문자 구분 안 함 @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 이 문서 유형 지정 @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 에서 통신원을 지정합니다. @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 이메일 @@ -4954,7 +4978,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 새로운 사용자 계정 만들기 @@ -4962,7 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 사용자 계정 수정 @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp 비활성화 @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 트리거 유형 @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 오프셋 날짜 @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 상대적 @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 사용자 정의 필드 @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 반복 @@ -5110,7 +5134,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 트리거가 반복되고 있습니다. @@ -5118,7 +5142,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 반복 간격일 @@ -5126,7 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 파일 이름 필터 @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 출처 필터 @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 필터 경로 @@ -5174,7 +5198,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 +5206,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 필터 메일 규칙 @@ -5190,7 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 콘텐츠 일치 알고리즘 @@ -5206,7 +5230,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 콘텐츠 일치 패턴 @@ -5214,7 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 동작 유형 @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 제목 지정 @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 태그 할당 @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 이 저장 경로를 할당합니다. @@ -5286,7 +5310,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 사용자 지정 필드 할당 @@ -5294,7 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 소유자 할당 @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 보기 권한 할당 @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 편집 권한 할당 @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 태그 제거 @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 담당자 제거 @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 모든 문서 유형 제거 @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 모든 저장소 경로 제거 @@ -5382,7 +5406,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 사용자 정의 필드 제거 @@ -5390,7 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 소유자 제거 @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 권한 제거 @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 권한 보기 @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 권한 수정 @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 이메일 제목 @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 이메일 본문 @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 이메일 수신자 @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 문서 첨부 @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 웹훅 URL @@ -5462,7 +5486,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 웹훅 본문에 매개변수 사용 @@ -5470,7 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 웹훅 매개변수 @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 웹훅 본문 @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 웹훅 헤더 @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 문서 포함 @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 "" 필터 열기 @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 프로필 업데이트 성공 @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 프로필을 저장하는 중 오류가 발생하였습니다 @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 인증 토큰을 생성하는 중 오류가 발생하였습니다 @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 소셜 계정 연결 해제 @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 TOTP 설정 가져오기 오류 @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP가 성공적으로 활성화되었습니다. @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 TOTP 활성화 오류 @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP가 성공적으로 비활성화되었습니다. @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 TOTP 비활성화 오류 @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 tiff를 로드하는 동안 오류가 발생했습니다: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 포함: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 보관된 파일 @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 원본 파일 @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 형식화된 파일명 사용 @@ -8670,6 +8694,14 @@ 전체 선택 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ 없음 - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 표시 - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 권한 업데이트 중 오류 발생 @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 이(가) 성공적으로 생성되었습니다. @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 을(를) 생성하는 동안 오류가 발생했습니다. @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 을(를) 저장하는 동안 오류가 발생했습니다. @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 연결된 문서는 삭제되지 않습니다. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 요소 삭제 중 오류 발생 @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 권한을 성공적으로 업데이트하였습니다 @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 이 작업은 모든 개체를 영구적으로 삭제합니다. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 개체가 성공적으로 삭제됨 @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 개체 삭제 중 오류 발생 diff --git a/src-ui/src/locale/messages.lb_LU.xlf b/src-ui/src/locale/messages.lb_LU.xlf index 04661ab43..edb8c7a27 100644 --- a/src-ui/src/locale/messages.lb_LU.xlf +++ b/src-ui/src/locale/messages.lb_LU.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Astellungen @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Protokoller @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Feeler beim Opruffe vun de Benotzer @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Feeler beim Opruffe vun de Benotzergruppen @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Beim Späichere vun den Astellungen ass ee Feeler opgetrueden. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Datei Jobs @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Pabeierkuerf @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Läsche bestätegen @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Benotzer & Gruppen @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 D’Passwuert gouf geännert, Dir gitt elo ofgemellt. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Benotzer „“ gespäichert. @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Feeler beim Späicheren vum Benotzer. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 D’Läsche vum Benotzer bestätegen @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Dëse Virgang wäert de Benotzer permanent läschen. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Benotzer „“ geläscht @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Feeler beim Läsche vum Benotzer „“. @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Grupp „“ gespäichert. @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Feeler beim Späicheren vun der Grupp. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 D’Läsche vun der Grupp bestätegen @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Dëse Virgang wäert d'Grupp permanent läschen. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Grupp „“ geläscht @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Feeler beim Läsche vun der Grupp „“. @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentatioun @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Gespäichert Usiichten @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Oppen Dokumenter @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 All zoumaachen @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Verwalten @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 ass disponibel. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klicke fir unzeweisen. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update disponibel @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Säiteleeschten-Usiichten aktualiséiert @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Feeler beim Aktualiséieren vun de Säiteleeschten-Usiichten @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Wouer @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falsch @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Dokumenter sichen... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Grouss-/Klengschreiwung ignoréieren @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Email @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Include: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Alles auswielen + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 8fd23868e..62833f466 100644 --- a/src-ui/src/locale/messages.lt_LT.xlf +++ b/src-ui/src/locale/messages.lt_LT.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nustatymai @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Žurnalai @@ -742,11 +742,35 @@ Peržiūrėkite žurnalo failus apie aplikaciją ir el. pašto patikrą. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error retrieving users @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error retrieving groups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Confirm delete @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Saved user "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Error saving user. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirm delete user account @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 This operation will permanently delete this user account. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Saved group "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Error saving group. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirm delete user group @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 This operation will permanently delete this user group. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saved views @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documents @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Close all @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Manage @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update available @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Case insensitive @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Email @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Include: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 1f280d3cb..ff9edccae 100644 --- a/src-ui/src/locale/messages.lv_LV.xlf +++ b/src-ui/src/locale/messages.lv_LV.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Iestatījumi @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Notikumu žurnāli @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error retrieving users @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error retrieving groups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Confirm delete @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Saved user "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Error saving user. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirm delete user account @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 This operation will permanently delete this user account. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Saved group "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Error saving group. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirm delete user group @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 This operation will permanently delete this user group. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentācija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saglabātais skats @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Atvērt dokumentus @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Aizvērt visu @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Pārvaldīt @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Pasts @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrācija @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurācija @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Pieejams atjauninājums @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Case insensitive @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-pasts @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Dzēst birkas @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,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 +5430,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 +5438,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 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profils tika sekmīgi atjaunināts @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Include: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Atzīmēt visu + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Neviens - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 Error deleting objects diff --git a/src-ui/src/locale/messages.mk_MK.xlf b/src-ui/src/locale/messages.mk_MK.xlf new file mode 100644 index 000000000..ebaf7ae61 --- /dev/null +++ b/src-ui/src/locale/messages.mk_MK.xlf @@ -0,0 +1,11444 @@ + + + + + + Close + + 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/alert/alert.ts + 50 + + Close + + + Slide of + + 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/carousel/carousel.ts + 131,135 + + Currently selected slide number read by screen reader + Slide of + + + Previous + + 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/carousel/carousel.ts + 157,159 + + Previous + + + Next + + 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/carousel/carousel.ts + 198 + + Next + + + Previous month + + 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/datepicker/datepicker-navigation.ts + 83,85 + + + 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/datepicker/datepicker-navigation.ts + 112 + + Previous month + + + Next month + + 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/datepicker/datepicker-navigation.ts + 112 + + + 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/datepicker/datepicker-navigation.ts + 112 + + Next month + + + HH + + 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 + + + Close + + 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 + + Close + + + Select month + + 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 + + + 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 + + Select month + + + «« + + 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 + + «« + + + Hours + + 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 + + Hours + + + « + + 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 + + « + + + MM + + 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 + + MM + + + » + + 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 + + » + + + Select year + + 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 + + + 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 + + Select year + + + Minutes + + 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 + + Minutes + + + »» + + 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 + + »» + + + First + + 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 + + First + + + Increment hours + + 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 + + Increment hours + + + Previous + + 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 + + Previous + + + Decrement hours + + 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 + + Decrement hours + + + Next + + 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 + + Next + + + Increment minutes + + 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 + + Increment minutes + + + Last + + 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 + + Last + + + Decrement minutes + + 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 + + Decrement minutes + + + SS + + 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 + + SS + + + Seconds + + 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 + + Seconds + + + Increment seconds + + 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 + + Increment seconds + + + Decrement seconds + + 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 + + Decrement seconds + + + + + + + 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 + + + + + + + + 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/progressbar/progressbar.ts + 41,42 + + + + + Document was added to Paperless-ngx. + + src/app/app.component.ts + 95 + + + src/app/app.component.ts + 104 + + Document was added to Paperless-ngx. + + + Open document + + src/app/app.component.ts + 97 + + + src/app/components/admin/trash/trash.component.ts + 146 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 44 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 47 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 50 + + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 58 + + Open document + + + Could not add : + + src/app/app.component.ts + 119 + + Could not add : + + + Document is being processed by Paperless-ngx. + + src/app/app.component.ts + 134 + + Document is being processed by Paperless-ngx. + + + Dashboard + + src/app/app.component.ts + 141 + + + src/app/components/app-frame/app-frame.component.html + 84 + + + src/app/components/app-frame/app-frame.component.html + 86 + + + src/app/components/dashboard/dashboard.component.html + 1 + + Dashboard + + + Documents + + src/app/app.component.ts + 152 + + + src/app/components/app-frame/app-frame.component.html + 91 + + + src/app/components/app-frame/app-frame.component.html + 93 + + + src/app/components/document-list/document-list.component.ts + 192 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 61 + + + src/app/components/manage/management-list/management-list.component.html + 133 + + + src/app/components/manage/management-list/management-list.component.html + 133 + + + src/app/components/manage/management-list/management-list.component.html + 133 + + + src/app/components/manage/management-list/management-list.component.html + 133 + + Documents + + + Settings + + src/app/app.component.ts + 164 + + + src/app/components/admin/settings/settings.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 51 + + + src/app/components/app-frame/app-frame.component.html + 255 + + + src/app/components/app-frame/app-frame.component.html + 257 + + Settings + + + Prev + + src/app/app.component.ts + 170 + + Prev + + + Next + + src/app/app.component.ts + 171 + + + src/app/components/document-detail/document-detail.component.html + 113 + + Next + + + End + + src/app/app.component.ts + 172 + + End + + + The dashboard can be used to show saved views, such as an 'Inbox'. Views are found under Manage > Saved Views once you have created some. + + src/app/app.component.ts + 178 + + The dashboard can be used to show saved views, such as an 'Inbox'. Views are found under Manage > Saved Views once you have created some. + + + Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. + + src/app/app.component.ts + 185 + + Drag-and-drop documents here to start uploading or place them in the consume folder. You can also drag-and-drop documents anywhere on all other pages of the web app. Once you do, Paperless-ngx will start training its machine learning algorithms. + + + The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. + + src/app/app.component.ts + 190 + + The documents list shows all of your documents and allows for filtering as well as bulk-editing. There are three different view styles: list, small cards and large cards. A list of documents currently opened for editing is shown in the sidebar. + + + The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. + + src/app/app.component.ts + 197 + + The filtering tools allow you to quickly find documents using various searches, dates, tags, etc. + + + Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. + + src/app/app.component.ts + 203 + + Any combination of filters can be saved as a 'view' which can then be displayed on the dashboard and / or sidebar. + + + Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. + + src/app/app.component.ts + 208 + + Tags, correspondents, document types and storage paths can all be managed using these pages. They can also be created from the document edit view. + + + Manage e-mail accounts and rules for automatically importing documents. + + src/app/app.component.ts + 216 + + + src/app/components/manage/mail/mail.component.html + 4 + + Manage e-mail accounts and rules for automatically importing documents. + + + Workflows give you more control over the document pipeline. + + src/app/app.component.ts + 224 + + Workflows give you more control over the document pipeline. + + + File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. + + src/app/app.component.ts + 232 + + + src/app/components/admin/tasks/tasks.component.html + 4 + + File Tasks shows you documents that have been consumed, are waiting to be, or may have failed during the process. + + + Check out the settings for various tweaks to the web app. + + src/app/app.component.ts + 240 + + Check out the settings for various tweaks to the web app. + + + Thank you! 🙏 + + src/app/app.component.ts + 248 + + Thank you! 🙏 + + + There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. + + src/app/app.component.ts + 250 + + There are <em>tons</em> more features and info we didn't cover here, but this should get you started. Check out the documentation or visit the project on GitHub to learn more or to report issues. + + + Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + src/app/app.component.ts + 252 + + Lastly, on behalf of every contributor to this community-supported project, thank you for using Paperless-ngx! + + + Application Configuration + + src/app/components/admin/config/config.component.html + 2 + + Application Configuration + + + Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence. + + src/app/components/admin/config/config.component.html + 4 + + Global app configuration options which apply to <strong>every</strong> user of this install of Paperless-ngx. Options can also be set using environment variables or the configuration file but the value here will always take precedence. + + + Read the documentation about this setting + + src/app/components/admin/config/config.component.html + 25 + + Read the documentation about this setting + + + Enable + + src/app/components/admin/config/config.component.html + 34 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 123 + + Enable + + + Discard + + src/app/components/admin/config/config.component.html + 53 + + + src/app/components/document-detail/document-detail.component.html + 374 + + Discard + + + Save + + src/app/components/admin/config/config.component.html + 56 + + + src/app/components/admin/settings/settings.component.html + 362 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 26 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 52 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 28 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 20 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 40 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 76 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 77 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 31 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 57 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 116 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 183 + + + src/app/components/document-detail/document-detail.component.html + 367 + + + src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html + 83 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 21 + + + src/app/components/manage/saved-views/saved-views.component.html + 74 + + Save + + + Error retrieving config + + src/app/components/admin/config/config.component.ts + 103 + + Error retrieving config + + + Invalid JSON + + src/app/components/admin/config/config.component.ts + 129 + + Invalid JSON + + + Configuration updated + + src/app/components/admin/config/config.component.ts + 173 + + Configuration updated + + + An error occurred updating configuration + + src/app/components/admin/config/config.component.ts + 178 + + An error occurred updating configuration + + + File successfully updated + + src/app/components/admin/config/config.component.ts + 200 + + File successfully updated + + + An error occurred uploading file + + src/app/components/admin/config/config.component.ts + 205 + + An error occurred uploading file + + + Logs + + src/app/components/admin/logs/logs.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 290 + + + src/app/components/app-frame/app-frame.component.html + 293 + + Logs + + + Review the log files for the application and for email checking. + + src/app/components/admin/logs/logs.component.html + 4 + + Review the log files for the application and for email checking. + + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + + + Auto refresh + + src/app/components/admin/logs/logs.component.html + 21 + + + src/app/components/admin/tasks/tasks.component.html + 41 + + Auto refresh + + + Loading... + + src/app/components/admin/logs/logs.component.html + 38 + + + src/app/components/admin/logs/logs.component.html + 53 + + + src/app/components/admin/tasks/tasks.component.html + 48 + + + src/app/components/admin/trash/trash.component.html + 45 + + + src/app/components/admin/users-groups/users-groups.component.html + 92 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 35 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 50 + + + src/app/components/common/input/document-link/document-link.component.html + 58 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 23 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 110 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 126 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 10 + + + src/app/components/dashboard/widgets/widget-frame/widget-frame.component.html + 18 + + + src/app/components/document-detail/document-detail.component.html + 387 + + + src/app/components/document-list/document-list.component.html + 134 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 26 + + + src/app/components/manage/mail/mail.component.html + 40 + + + src/app/components/manage/mail/mail.component.html + 123 + + + src/app/components/manage/mail/mail.component.html + 192 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 16 + + + src/app/components/manage/management-list/management-list.component.html + 52 + + + src/app/components/manage/management-list/management-list.component.html + 52 + + + src/app/components/manage/management-list/management-list.component.html + 52 + + + src/app/components/manage/management-list/management-list.component.html + 52 + + + src/app/components/manage/saved-views/saved-views.component.html + 68 + + + src/app/components/manage/workflows/workflows.component.html + 28 + + Loading... + + + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. + + src/app/components/admin/settings/settings.component.html + 4 + + Options to customize appearance, notifications and more. Settings apply to the <strong>current user only</strong>. + + + Start tour + + src/app/components/admin/settings/settings.component.html + 8 + + Start tour + + + System Status + + src/app/components/admin/settings/settings.component.html + 27 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 2 + + System Status + + + Open Django Admin + + src/app/components/admin/settings/settings.component.html + 30 + + Open Django Admin + + + General + + src/app/components/admin/settings/settings.component.html + 40 + + General + + + Appearance + + src/app/components/admin/settings/settings.component.html + 44 + + Appearance + + + Display language + + src/app/components/admin/settings/settings.component.html + 47 + + Display language + + + You need to reload the page after applying a new language. + + src/app/components/admin/settings/settings.component.html + 60 + + You need to reload the page after applying a new language. + + + Date display + + src/app/components/admin/settings/settings.component.html + 68 + + Date display + + + Date format + + src/app/components/admin/settings/settings.component.html + 85 + + Date format + + + Short: + + src/app/components/admin/settings/settings.component.html + 91,92 + + Short: + + + Medium: + + src/app/components/admin/settings/settings.component.html + 95,96 + + Medium: + + + Long: + + src/app/components/admin/settings/settings.component.html + 99,100 + + Long: + + + Items per page + + src/app/components/admin/settings/settings.component.html + 107 + + Items per page + + + Sidebar + + src/app/components/admin/settings/settings.component.html + 123 + + Sidebar + + + Use 'slim' sidebar (icons only) + + src/app/components/admin/settings/settings.component.html + 127 + + Use 'slim' sidebar (icons only) + + + Dark mode + + src/app/components/admin/settings/settings.component.html + 134 + + Dark mode + + + Use system settings + + src/app/components/admin/settings/settings.component.html + 137 + + Use system settings + + + Enable dark mode + + src/app/components/admin/settings/settings.component.html + 138 + + Enable dark mode + + + Invert thumbnails in dark mode + + src/app/components/admin/settings/settings.component.html + 139 + + Invert thumbnails in dark mode + + + Theme Color + + src/app/components/admin/settings/settings.component.html + 145 + + Theme Color + + + Reset + + src/app/components/admin/settings/settings.component.html + 152 + + Reset + + + Update checking + + src/app/components/admin/settings/settings.component.html + 157 + + Update checking + + + Enable update checking + + src/app/components/admin/settings/settings.component.html + 160 + + Enable update checking + + + What's this? + + src/app/components/admin/settings/settings.component.html + 161 + + + src/app/components/common/page-header/page-header.component.html + 9 + + + src/app/components/common/permissions-select/permissions-select.component.html + 4 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 3 + + What's this? + + + Update checking works by pinging the public GitHub API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + src/app/components/admin/settings/settings.component.html + 165,167 + + Update checking works by pinging the public GitHub API for the latest release to determine whether a new version is available. Actual updating of the app must still be performed manually. + + + No tracking data is collected by the app in any way. + + src/app/components/admin/settings/settings.component.html + 169 + + No tracking data is collected by the app in any way. + + + Saved Views + + src/app/components/admin/settings/settings.component.html + 175 + + + src/app/components/app-frame/app-frame.component.html + 215 + + + src/app/components/app-frame/app-frame.component.html + 217 + + + src/app/components/manage/saved-views/saved-views.component.html + 2 + + Saved Views + + + Show warning when closing saved views with unsaved changes + + src/app/components/admin/settings/settings.component.html + 178 + + Show warning when closing saved views with unsaved changes + + + Show document counts in sidebar saved views + + src/app/components/admin/settings/settings.component.html + 179 + + Show document counts in sidebar saved views + + + Document editing + + src/app/components/admin/settings/settings.component.html + 185 + + Document editing + + + Use PDF viewer provided by the browser + + src/app/components/admin/settings/settings.component.html + 189 + + Use PDF viewer provided by the browser + + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + src/app/components/admin/settings/settings.component.html + 189 + + This is usually faster for displaying large PDF documents, but it might not work on some browsers. + + + Default zoom + + src/app/components/admin/settings/settings.component.html + 195 + + Default zoom + + + Fit width + + src/app/components/admin/settings/settings.component.html + 199 + + Fit width + + + Fit page + + src/app/components/admin/settings/settings.component.html + 200 + + Fit page + + + Only applies to the Paperless-ngx PDF viewer. + + src/app/components/admin/settings/settings.component.html + 202 + + Only applies to the Paperless-ngx PDF viewer. + + + Automatically remove inbox tag(s) on save + + src/app/components/admin/settings/settings.component.html + 208 + + Automatically remove inbox tag(s) on save + + + Show document thumbnail during loading + + src/app/components/admin/settings/settings.component.html + 214 + + Show document thumbnail during loading + + + Global search + + src/app/components/admin/settings/settings.component.html + 218 + + + src/app/components/app-frame/global-search/global-search.component.ts + 122 + + Global search + + + Do not include advanced search results + + src/app/components/admin/settings/settings.component.html + 221 + + Do not include advanced search results + + + Full search links to + + src/app/components/admin/settings/settings.component.html + 227 + + Full search links to + + + Title and content search + + src/app/components/admin/settings/settings.component.html + 231 + + Title and content search + + + Advanced search + + src/app/components/admin/settings/settings.component.html + 232 + + + src/app/components/app-frame/global-search/global-search.component.html + 24 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 192 + + Advanced search + + + Bulk editing + + src/app/components/admin/settings/settings.component.html + 237 + + Bulk editing + + + Show confirmation dialogs + + src/app/components/admin/settings/settings.component.html + 240 + + Show confirmation dialogs + + + Apply on close + + src/app/components/admin/settings/settings.component.html + 241 + + Apply on close + + + Notes + + src/app/components/admin/settings/settings.component.html + 245 + + + src/app/components/document-list/document-list.component.html + 242 + + + src/app/data/document.ts + 58 + + + src/app/data/document.ts + 95 + + Notes + + + Enable notes + + src/app/components/admin/settings/settings.component.html + 248 + + Enable notes + + + Permissions + + src/app/components/admin/settings/settings.component.html + 259 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 14 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 51 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 2 + + + src/app/components/document-detail/document-detail.component.html + 343 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 78 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 101 + + + src/app/components/manage/mail/mail.component.html + 66 + + + src/app/components/manage/mail/mail.component.html + 78 + + + src/app/components/manage/mail/mail.component.html + 154 + + + src/app/components/manage/mail/mail.component.html + 166 + + + src/app/components/manage/management-list/management-list.component.html + 7 + + + src/app/components/manage/management-list/management-list.component.html + 7 + + + src/app/components/manage/management-list/management-list.component.html + 7 + + + src/app/components/manage/management-list/management-list.component.html + 7 + + Permissions + + + Default Permissions + + src/app/components/admin/settings/settings.component.html + 262 + + Default Permissions + + + Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. + + src/app/components/admin/settings/settings.component.html + 266,268 + + Settings apply to this user account for objects (Tags, Mail Rules, etc. but not documents) created via the web UI. + + + Default Owner + + src/app/components/admin/settings/settings.component.html + 273 + + Default Owner + + + Objects without an owner can be viewed and edited by all users + + src/app/components/admin/settings/settings.component.html + 277 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 32 + + Objects without an owner can be viewed and edited by all users + + + Default View Permissions + + src/app/components/admin/settings/settings.component.html + 282 + + Default View Permissions + + + Users: + + src/app/components/admin/settings/settings.component.html + 287 + + + src/app/components/admin/settings/settings.component.html + 314 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 278 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 297 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 364 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 383 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 38 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 57 + + Users: + + + Groups: + + src/app/components/admin/settings/settings.component.html + 297 + + + src/app/components/admin/settings/settings.component.html + 324 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 286 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 305 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 372 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 391 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 46 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 65 + + Groups: + + + Default Edit Permissions + + src/app/components/admin/settings/settings.component.html + 309 + + Default Edit Permissions + + + Edit permissions also grant viewing permissions + + src/app/components/admin/settings/settings.component.html + 333 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 311 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 397 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 71 + + Edit permissions also grant viewing permissions + + + Notifications + + src/app/components/admin/settings/settings.component.html + 341 + + + src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html + 11 + + Notifications + + + Document processing + + src/app/components/admin/settings/settings.component.html + 344 + + Document processing + + + Show notifications when new documents are detected + + src/app/components/admin/settings/settings.component.html + 348 + + Show notifications when new documents are detected + + + Show notifications when document processing completes successfully + + src/app/components/admin/settings/settings.component.html + 349 + + Show notifications when document processing completes successfully + + + Show notifications when document processing fails + + src/app/components/admin/settings/settings.component.html + 350 + + Show notifications when document processing fails + + + Suppress notifications on dashboard + + src/app/components/admin/settings/settings.component.html + 351 + + Suppress notifications on dashboard + + + This will suppress all messages about document processing status on the dashboard. + + src/app/components/admin/settings/settings.component.html + 351 + + This will suppress all messages about document processing status on the dashboard. + + + Cancel + + src/app/components/admin/settings/settings.component.html + 361 + + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 48 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 25 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 51 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 19 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 39 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 75 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 76 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 30 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 56 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 115 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 25 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 182 + + + src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html + 81 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 20 + + + src/app/components/manage/saved-views/saved-views.component.html + 73 + + Cancel + + + Use system language + + src/app/components/admin/settings/settings.component.ts + 78 + + Use system language + + + Use date format of display language + + src/app/components/admin/settings/settings.component.ts + 81 + + Use date format of display language + + + Error retrieving users + + src/app/components/admin/settings/settings.component.ts + 226 + + + src/app/components/admin/users-groups/users-groups.component.ts + 75 + + Error retrieving users + + + Error retrieving groups + + src/app/components/admin/settings/settings.component.ts + 245 + + + src/app/components/admin/users-groups/users-groups.component.ts + 89 + + Error retrieving groups + + + Settings were saved successfully. + + src/app/components/admin/settings/settings.component.ts + 548 + + Settings were saved successfully. + + + Settings were saved successfully. Reload is required to apply some changes. + + src/app/components/admin/settings/settings.component.ts + 552 + + Settings were saved successfully. Reload is required to apply some changes. + + + Reload now + + src/app/components/admin/settings/settings.component.ts + 553 + + Reload now + + + An error occurred while saving settings. + + src/app/components/admin/settings/settings.component.ts + 563 + + + src/app/components/app-frame/app-frame.component.ts + 180 + + An error occurred while saving settings. + + + File Tasks + + src/app/components/admin/tasks/tasks.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 278 + + + src/app/components/app-frame/app-frame.component.html + 280 + + File Tasks + + + Clear selection + + src/app/components/admin/tasks/tasks.component.html + 9 + + + src/app/components/admin/trash/trash.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 153 + + + src/app/components/manage/management-list/management-list.component.html + 4 + + + src/app/components/manage/management-list/management-list.component.html + 4 + + + src/app/components/manage/management-list/management-list.component.html + 4 + + + src/app/components/manage/management-list/management-list.component.html + 4 + + Clear selection + + + Filter by + + src/app/components/admin/tasks/tasks.component.html + 16 + + Filter by + + + Name + + src/app/components/admin/tasks/tasks.component.html + 61 + + + src/app/components/admin/tasks/tasks.component.ts + 45 + + + src/app/components/admin/trash/trash.component.html + 35 + + + src/app/components/admin/users-groups/users-groups.component.html + 21 + + + src/app/components/admin/users-groups/users-groups.component.html + 58 + + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 12 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 12 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 11 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 13 + + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 8 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 17 + + + src/app/components/manage/mail/mail.component.html + 30 + + + src/app/components/manage/mail/mail.component.html + 111 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 21 + + + src/app/components/manage/management-list/management-list.component.html + 38 + + + src/app/components/manage/management-list/management-list.component.html + 38 + + + src/app/components/manage/management-list/management-list.component.html + 38 + + + src/app/components/manage/management-list/management-list.component.html + 38 + + + src/app/components/manage/workflows/workflows.component.html + 17 + + Name + + + Created + + src/app/components/admin/tasks/tasks.component.html + 62 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 8 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 94 + + + src/app/components/document-list/document-list.component.html + 269 + + + src/app/data/document.ts + 34 + + + src/app/data/document.ts + 92 + + Created + + + Results + + src/app/components/admin/tasks/tasks.component.html + 64 + + Results + + + Info + + src/app/components/admin/tasks/tasks.component.html + 66 + + Info + + + Actions + + src/app/components/admin/tasks/tasks.component.html + 67 + + + src/app/components/admin/trash/trash.component.html + 37 + + + src/app/components/admin/users-groups/users-groups.component.html + 23 + + + src/app/components/admin/users-groups/users-groups.component.html + 61 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 67 + + + src/app/components/document-detail/document-detail.component.html + 50 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 87 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 19 + + + src/app/components/manage/mail/mail.component.html + 33 + + + src/app/components/manage/mail/mail.component.html + 116 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/management-list/management-list.component.html + 44 + + + src/app/components/manage/saved-views/saved-views.component.html + 28 + + + src/app/components/manage/workflows/workflows.component.html + 21 + + Actions + + + click for full output + + src/app/components/admin/tasks/tasks.component.html + 97 + + click for full output + + + Dismiss + + src/app/components/admin/tasks/tasks.component.html + 110 + + + src/app/components/admin/tasks/tasks.component.ts + 155 + + Dismiss + + + Open Document + + src/app/components/admin/tasks/tasks.component.html + 115 + + Open Document + + + {VAR_PLURAL, plural, =1 {One task} other { total tasks}} + + src/app/components/admin/tasks/tasks.component.html + 134 + + {VAR_PLURAL, plural, =1 {One task} other { total tasks}} + + +  ( selected) + + src/app/components/admin/tasks/tasks.component.html + 136 + +  ( selected) + + + Failed + + src/app/components/admin/tasks/tasks.component.html + 148,150 + + Failed + + + Complete + + src/app/components/admin/tasks/tasks.component.html + 156,158 + + Complete + + + Started + + src/app/components/admin/tasks/tasks.component.html + 164,166 + + Started + + + Queued + + src/app/components/admin/tasks/tasks.component.html + 172,174 + + Queued + + + Result + + src/app/components/admin/tasks/tasks.component.ts + 46 + + Result + + + Dismiss selected + + src/app/components/admin/tasks/tasks.component.ts + 110 + + Dismiss selected + + + Dismiss all + + src/app/components/admin/tasks/tasks.component.ts + 111 + + Dismiss all + + + Confirm Dismiss All + + src/app/components/admin/tasks/tasks.component.ts + 152 + + Confirm Dismiss All + + + Dismiss all tasks? + + src/app/components/admin/tasks/tasks.component.ts + 153 + + Dismiss all tasks? + + + Error dismissing tasks + + src/app/components/admin/tasks/tasks.component.ts + 161 + + Error dismissing tasks + + + Error dismissing task + + src/app/components/admin/tasks/tasks.component.ts + 170 + + Error dismissing task + + + queued + + src/app/components/admin/tasks/tasks.component.ts + 246 + + queued + + + started + + src/app/components/admin/tasks/tasks.component.ts + 248 + + started + + + completed + + src/app/components/admin/tasks/tasks.component.ts + 250 + + completed + + + failed + + src/app/components/admin/tasks/tasks.component.ts + 252 + + failed + + + Trash + + src/app/components/admin/trash/trash.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 238 + + + src/app/components/app-frame/app-frame.component.html + 241 + + Trash + + + Manage trashed documents that are pending deletion. + + src/app/components/admin/trash/trash.component.html + 4 + + Manage trashed documents that are pending deletion. + + + Restore selected + + src/app/components/admin/trash/trash.component.html + 11 + + Restore selected + + + Delete selected + + src/app/components/admin/trash/trash.component.html + 14 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 87 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 89 + + Delete selected + + + Empty trash + + src/app/components/admin/trash/trash.component.html + 17 + + Empty trash + + + Remaining + + src/app/components/admin/trash/trash.component.html + 36 + + Remaining + + + days + + src/app/components/admin/trash/trash.component.html + 63 + + days + + + Restore + + src/app/components/admin/trash/trash.component.html + 71 + + + src/app/components/admin/trash/trash.component.html + 78 + + Restore + + + Delete + + src/app/components/admin/trash/trash.component.html + 72 + + + src/app/components/admin/trash/trash.component.html + 81 + + + src/app/components/admin/trash/trash.component.ts + 82 + + + src/app/components/admin/trash/trash.component.ts + 116 + + + src/app/components/admin/users-groups/users-groups.component.html + 38 + + + src/app/components/admin/users-groups/users-groups.component.html + 76 + + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 27 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 87 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 45 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 89 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 242 + + + src/app/components/common/permissions-select/permissions-select.component.html + 19 + + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 36 + + + src/app/components/document-detail/document-detail.component.html + 24 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 145 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 43 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 55 + + + src/app/components/manage/mail/mail.component.html + 67 + + + src/app/components/manage/mail/mail.component.html + 81 + + + src/app/components/manage/mail/mail.component.html + 155 + + + src/app/components/manage/mail/mail.component.html + 169 + + + src/app/components/manage/management-list/management-list.component.html + 10 + + + src/app/components/manage/management-list/management-list.component.html + 10 + + + src/app/components/manage/management-list/management-list.component.html + 10 + + + src/app/components/manage/management-list/management-list.component.html + 10 + + + src/app/components/manage/management-list/management-list.component.html + 115 + + + src/app/components/manage/management-list/management-list.component.html + 115 + + + src/app/components/manage/management-list/management-list.component.html + 115 + + + src/app/components/manage/management-list/management-list.component.html + 115 + + + src/app/components/manage/management-list/management-list.component.html + 127 + + + src/app/components/manage/management-list/management-list.component.html + 127 + + + src/app/components/manage/management-list/management-list.component.html + 127 + + + src/app/components/manage/management-list/management-list.component.html + 127 + + + src/app/components/manage/management-list/management-list.component.ts + 243 + + + src/app/components/manage/saved-views/saved-views.component.html + 30 + + + src/app/components/manage/workflows/workflows.component.html + 55 + + + src/app/components/manage/workflows/workflows.component.html + 66 + + Delete + + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + src/app/components/admin/trash/trash.component.html + 94 + + {VAR_PLURAL, plural, =1 {One document in trash} other { total documents in trash}} + + + Confirm delete + + src/app/components/admin/trash/trash.component.ts + 78 + + + src/app/components/admin/trash/trash.component.ts + 110 + + + src/app/components/manage/management-list/management-list.component.ts + 239 + + + src/app/components/manage/management-list/management-list.component.ts + 362 + + Confirm delete + + + This operation will permanently delete this document. + + src/app/components/admin/trash/trash.component.ts + 79 + + This operation will permanently delete this document. + + + This operation cannot be undone. + + src/app/components/admin/trash/trash.component.ts + 80 + + + src/app/components/admin/trash/trash.component.ts + 114 + + + src/app/components/admin/users-groups/users-groups.component.ts + 145 + + + src/app/components/admin/users-groups/users-groups.component.ts + 198 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 104 + + + src/app/components/manage/mail/mail.component.ts + 192 + + + src/app/components/manage/mail/mail.component.ts + 293 + + + src/app/components/manage/management-list/management-list.component.ts + 364 + + + src/app/components/manage/workflows/workflows.component.ts + 133 + + This operation cannot be undone. + + + Document "" deleted + + src/app/components/admin/trash/trash.component.ts + 90 + + Document "" deleted + + + Error deleting document "" + + src/app/components/admin/trash/trash.component.ts + 97 + + Error deleting document "" + + + This operation will permanently delete the selected documents. + + src/app/components/admin/trash/trash.component.ts + 112 + + This operation will permanently delete the selected documents. + + + This operation will permanently delete all documents in the trash. + + src/app/components/admin/trash/trash.component.ts + 113 + + This operation will permanently delete all documents in the trash. + + + Document(s) deleted + + src/app/components/admin/trash/trash.component.ts + 124 + + Document(s) deleted + + + Error deleting document(s) + + src/app/components/admin/trash/trash.component.ts + 131 + + Error deleting document(s) + + + Document "" restored + + src/app/components/admin/trash/trash.component.ts + 144 + + Document "" restored + + + Error restoring document "" + + src/app/components/admin/trash/trash.component.ts + 155 + + Error restoring document "" + + + Document(s) restored + + src/app/components/admin/trash/trash.component.ts + 167 + + Document(s) restored + + + Error restoring document(s) + + src/app/components/admin/trash/trash.component.ts + 173 + + Error restoring document(s) + + + Users & Groups + + src/app/components/admin/users-groups/users-groups.component.html + 2 + + + src/app/components/app-frame/app-frame.component.html + 269 + + + src/app/components/app-frame/app-frame.component.html + 271 + + Users & Groups + + + Create, delete and edit users and groups. + + src/app/components/admin/users-groups/users-groups.component.html + 4 + + Create, delete and edit users and groups. + + + Users + + src/app/components/admin/users-groups/users-groups.component.html + 12 + + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 76 + + Users + + + Add User + + src/app/components/admin/users-groups/users-groups.component.html + 14 + + Add User + + + Username + + src/app/components/admin/users-groups/users-groups.component.html + 20 + + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 19 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 13 + + + src/app/components/manage/mail/mail.component.html + 32 + + Username + + + Groups + + src/app/components/admin/users-groups/users-groups.component.html + 22 + + + src/app/components/admin/users-groups/users-groups.component.html + 50 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 34 + + Groups + + + Edit + + src/app/components/admin/users-groups/users-groups.component.html + 35 + + + src/app/components/admin/users-groups/users-groups.component.html + 73 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 53 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 42 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 52 + + + src/app/components/manage/mail/mail.component.html + 65 + + + src/app/components/manage/mail/mail.component.html + 75 + + + src/app/components/manage/mail/mail.component.html + 153 + + + src/app/components/manage/mail/mail.component.html + 163 + + + src/app/components/manage/management-list/management-list.component.html + 114 + + + src/app/components/manage/management-list/management-list.component.html + 114 + + + src/app/components/manage/management-list/management-list.component.html + 114 + + + src/app/components/manage/management-list/management-list.component.html + 114 + + + src/app/components/manage/management-list/management-list.component.html + 124 + + + src/app/components/manage/management-list/management-list.component.html + 124 + + + src/app/components/manage/management-list/management-list.component.html + 124 + + + src/app/components/manage/management-list/management-list.component.html + 124 + + + src/app/components/manage/workflows/workflows.component.html + 54 + + + src/app/components/manage/workflows/workflows.component.html + 63 + + Edit + + + Add Group + + src/app/components/admin/users-groups/users-groups.component.html + 52 + + Add Group + + + No groups defined + + src/app/components/admin/users-groups/users-groups.component.html + 84 + + No groups defined + + + Password has been changed, you will be logged out momentarily. + + src/app/components/admin/users-groups/users-groups.component.ts + 116 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 196 + + Password has been changed, you will be logged out momentarily. + + + Saved user "". + + src/app/components/admin/users-groups/users-groups.component.ts + 125 + + Saved user "". + + + Error saving user. + + src/app/components/admin/users-groups/users-groups.component.ts + 135 + + Error saving user. + + + Confirm delete user account + + src/app/components/admin/users-groups/users-groups.component.ts + 143 + + Confirm delete user account + + + This operation will permanently delete this user account. + + src/app/components/admin/users-groups/users-groups.component.ts + 144 + + This operation will permanently delete this user account. + + + Proceed + + src/app/components/admin/users-groups/users-groups.component.ts + 147 + + + src/app/components/admin/users-groups/users-groups.component.ts + 200 + + + src/app/components/document-detail/document-detail.component.ts + 1028 + + + src/app/components/document-detail/document-detail.component.ts + 1393 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 798 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 831 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 850 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 106 + + + src/app/components/manage/mail/mail.component.ts + 194 + + + src/app/components/manage/mail/mail.component.ts + 295 + + + src/app/components/manage/management-list/management-list.component.ts + 366 + + + src/app/components/manage/workflows/workflows.component.ts + 135 + + Proceed + + + Deleted user "" + + src/app/components/admin/users-groups/users-groups.component.ts + 153 + + Deleted user "" + + + Error deleting user "". + + src/app/components/admin/users-groups/users-groups.component.ts + 160 + + Error deleting user "". + + + Saved group "". + + src/app/components/admin/users-groups/users-groups.component.ts + 180 + + Saved group "". + + + Error saving group. + + src/app/components/admin/users-groups/users-groups.component.ts + 188 + + Error saving group. + + + Confirm delete user group + + src/app/components/admin/users-groups/users-groups.component.ts + 196 + + Confirm delete user group + + + This operation will permanently delete this user group. + + src/app/components/admin/users-groups/users-groups.component.ts + 197 + + This operation will permanently delete this user group. + + + Deleted group "" + + src/app/components/admin/users-groups/users-groups.component.ts + 206 + + Deleted group "" + + + Error deleting group "". + + src/app/components/admin/users-groups/users-groups.component.ts + 213 + + Error deleting group "". + + + by Paperless-ngx + + src/app/components/app-frame/app-frame.component.html + 20 + + by Paperless-ngx + + + Logged in as + + src/app/components/app-frame/app-frame.component.html + 43 + + Logged in as + + + My Profile + + src/app/components/app-frame/app-frame.component.html + 47 + + My Profile + + + Logout + + src/app/components/app-frame/app-frame.component.html + 54 + + Logout + + + Documentation + + src/app/components/app-frame/app-frame.component.html + 59 + + + src/app/components/app-frame/app-frame.component.html + 299 + + + src/app/components/app-frame/app-frame.component.html + 302 + + Documentation + + + Saved views + + src/app/components/app-frame/app-frame.component.html + 101 + + + src/app/components/app-frame/app-frame.component.html + 106 + + Saved views + + + Open documents + + src/app/components/app-frame/app-frame.component.html + 141 + + Open documents + + + Close all + + src/app/components/app-frame/app-frame.component.html + 161 + + + src/app/components/app-frame/app-frame.component.html + 163 + + Close all + + + Manage + + src/app/components/app-frame/app-frame.component.html + 172 + + Manage + + + Correspondents + + src/app/components/app-frame/app-frame.component.html + 178 + + + src/app/components/app-frame/app-frame.component.html + 180 + + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 107 + + Correspondents + + + Tags + + src/app/components/app-frame/app-frame.component.html + 185 + + + src/app/components/app-frame/app-frame.component.html + 188 + + + src/app/components/common/input/tags/tags.component.ts + 80 + + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 94 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 5 + + + src/app/components/document-list/document-list.component.html + 224 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 39 + + + src/app/data/document.ts + 42 + + Tags + + + Document Types + + src/app/components/app-frame/app-frame.component.html + 194 + + + src/app/components/app-frame/app-frame.component.html + 196 + + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 120 + + Document Types + + + Storage Paths + + src/app/components/app-frame/app-frame.component.html + 201 + + + src/app/components/app-frame/app-frame.component.html + 203 + + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 133 + + Storage Paths + + + Custom Fields + + src/app/components/app-frame/app-frame.component.html + 208 + + + src/app/components/app-frame/app-frame.component.html + 210 + + + src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html + 4 + + + src/app/components/manage/custom-fields/custom-fields.component.html + 2 + + Custom Fields + + + Workflows + + src/app/components/app-frame/app-frame.component.html + 224 + + + src/app/components/app-frame/app-frame.component.html + 226 + + + src/app/components/manage/workflows/workflows.component.html + 2 + + Workflows + + + Mail + + src/app/components/app-frame/app-frame.component.html + 231 + + + src/app/components/app-frame/app-frame.component.html + 234 + + Mail + + + Administration + + src/app/components/app-frame/app-frame.component.html + 249 + + Administration + + + Configuration + + src/app/components/app-frame/app-frame.component.html + 262 + + + src/app/components/app-frame/app-frame.component.html + 264 + + Configuration + + + GitHub + + src/app/components/app-frame/app-frame.component.html + 309 + + GitHub + + + is available. + + src/app/components/app-frame/app-frame.component.html + 318,319 + + is available. + + + Click to view. + + src/app/components/app-frame/app-frame.component.html + 319 + + Click to view. + + + Paperless-ngx can automatically check for updates + + src/app/components/app-frame/app-frame.component.html + 323 + + Paperless-ngx can automatically check for updates + + + How does this work? + + src/app/components/app-frame/app-frame.component.html + 330,332 + + How does this work? + + + Update available + + src/app/components/app-frame/app-frame.component.html + 343 + + Update available + + + Sidebar views updated + + src/app/components/app-frame/app-frame.component.ts + 264 + + Sidebar views updated + + + Error updating sidebar views + + src/app/components/app-frame/app-frame.component.ts + 267 + + Error updating sidebar views + + + An error occurred while saving update checking settings. + + src/app/components/app-frame/app-frame.component.ts + 288 + + An error occurred while saving update checking settings. + + + Search + + src/app/components/app-frame/global-search/global-search.component.html + 8 + + + src/app/components/app-frame/global-search/global-search.component.html + 26 + + Search + + + Open + + src/app/components/app-frame/global-search/global-search.component.html + 53 + + + src/app/components/app-frame/global-search/global-search.component.html + 56 + + + src/app/components/app-frame/global-search/global-search.component.html + 59 + + + src/app/components/app-frame/global-search/global-search.component.html + 76 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 72 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 143 + + Open + + + Filter documents + + src/app/components/app-frame/global-search/global-search.component.html + 62 + + Filter documents + + + Download + + src/app/components/app-frame/global-search/global-search.component.html + 73 + + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 104 + + + src/app/components/document-detail/document-detail.component.html + 34 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 117 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 78 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 149 + + Download + + + No results + + src/app/components/app-frame/global-search/global-search.component.html + 87 + + No results + + + Documents + + src/app/components/app-frame/global-search/global-search.component.html + 90 + + Documents + + + Saved Views + + src/app/components/app-frame/global-search/global-search.component.html + 96 + + Saved Views + + + Tags + + src/app/components/app-frame/global-search/global-search.component.html + 103 + + Tags + + + Correspondents + + src/app/components/app-frame/global-search/global-search.component.html + 110 + + Correspondents + + + Document types + + src/app/components/app-frame/global-search/global-search.component.html + 117 + + Document types + + + Storage paths + + src/app/components/app-frame/global-search/global-search.component.html + 124 + + Storage paths + + + Users + + src/app/components/app-frame/global-search/global-search.component.html + 131 + + Users + + + Groups + + src/app/components/app-frame/global-search/global-search.component.html + 138 + + Groups + + + Custom fields + + src/app/components/app-frame/global-search/global-search.component.html + 145 + + Custom fields + + + Mail accounts + + src/app/components/app-frame/global-search/global-search.component.html + 152 + + Mail accounts + + + Mail rules + + src/app/components/app-frame/global-search/global-search.component.html + 159 + + Mail rules + + + Workflows + + src/app/components/app-frame/global-search/global-search.component.html + 166 + + Workflows + + + Successfully updated object. + + src/app/components/app-frame/global-search/global-search.component.ts + 211 + + + src/app/components/app-frame/global-search/global-search.component.ts + 249 + + Successfully updated object. + + + Error occurred saving object. + + src/app/components/app-frame/global-search/global-search.component.ts + 214 + + + src/app/components/app-frame/global-search/global-search.component.ts + 252 + + Error occurred saving object. + + + Clear All + + src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html + 16 + + Clear All + + + No notifications + + src/app/components/app-frame/toasts-dropdown/toasts-dropdown.component.html + 20 + + No notifications + + + Clear + + src/app/components/common/clearable-badge/clearable-badge.component.html + 2 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 85 + + Clear + + + Are you sure? + + src/app/components/common/confirm-button/confirm-button.component.ts + 22 + + Are you sure? + + + Confirmation + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 24 + + Confirmation + + + Confirm + + src/app/components/common/confirm-dialog/confirm-dialog.component.ts + 36 + + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 26 + + + src/app/components/document-detail/document-detail.component.ts + 981 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 441 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 481 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 519 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 557 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 619 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 752 + + Confirm + + + Documents: + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 9 + + Documents: + + + Use metadata from: + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 22 + + Use metadata from: + + + Regenerate all metadata + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 24 + + Regenerate all metadata + + + Try to include archive version in merge for non-PDF files + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 32 + + Try to include archive version in merge for non-PDF files + + + Delete original documents after successful merge + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 36 + + Delete original documents after successful merge + + + Note that only PDFs will be included. + + src/app/components/common/confirm-dialog/merge-confirm-dialog/merge-confirm-dialog.component.html + 39 + + Note that only PDFs will be included. + + + Note that only PDFs will be rotated. + + src/app/components/common/confirm-dialog/rotate-confirm-dialog/rotate-confirm-dialog.component.html + 25 + + Note that only PDFs will be rotated. + + + View + + src/app/components/common/custom-field-display/custom-field-display.component.html + 22 + + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 34 + + + src/app/components/common/permissions-select/permissions-select.component.html + 20 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 75 + + View + + + Search fields + + src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html + 10 + + Search fields + + + Create new field + + src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html + 21 + + Create new field + + + Saved field "". + + src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts + 130 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 85 + + Saved field "". + + + Error saving field. + + src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.ts + 139 + + + src/app/components/manage/custom-fields/custom-fields.component.ts + 94 + + Error saving field. + + + Today + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 47 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 52 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 76 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 128 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 152 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 106 + + + src/app/components/common/input/date/date.component.html + 21 + + Today + + + Close + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 48 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 53 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 77 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 129 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 153 + + + src/app/components/common/input/date/date.component.html + 22 + + + src/app/components/document-detail/document-detail.component.html + 107 + + + src/app/guards/dirty-saved-view.guard.ts + 35 + + Close + + + True + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 55 + + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 95 + + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 101 + + True + + + False + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 56 + + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 96 + + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 102 + + False + + + Search docs... + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 70 + + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 118 + + Search docs... + + + Any + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 150 + + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 17 + + Any + + + All + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 152 + + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 15 + + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 16 + + + src/app/components/common/permissions-select/permissions-select.component.html + 16 + + + src/app/components/common/permissions-select/permissions-select.component.html + 27 + + + src/app/components/document-list/document-list.component.html + 30 + + All + + + Not + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 155 + + Not + + + Add query + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 174 + + Add query + + + Add expression + + src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html + 177 + + Add expression + + + Relative dates + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 25 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 101 + + Relative dates + + + now + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 29 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 105 + + now + + + From + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 44 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 120 + + From + + + To + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 68 + + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 144 + + To + + + Added + + src/app/components/common/dates-dropdown/dates-dropdown.component.html + 84 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 90 + + + src/app/components/document-list/document-list.component.html + 278 + + + src/app/data/document.ts + 38 + + + src/app/data/document.ts + 93 + + Added + + + Within 1 week + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 76 + + Within 1 week + + + Within 1 month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 81 + + Within 1 month + + + Within 3 months + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 86 + + Within 3 months + + + Within 1 year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 91 + + Within 1 year + + + This year + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 96 + + This year + + + This month + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 101 + + This month + + + Yesterday + + src/app/components/common/dates-dropdown/dates-dropdown.component.ts + 111 + + + src/app/pipes/custom-date.pipe.ts + 29 + + Yesterday + + + Matching algorithm + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 13 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 14 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 64 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 18 + + Matching algorithm + + + Matching pattern + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 15 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 66 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 20 + + Matching pattern + + + Case insensitive + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.html + 16 + + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.html + 17 + + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 67 + + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 21 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 173 + + Case insensitive + + + Create new correspondent + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 43 + + Create new correspondent + + + Edit correspondent + + src/app/components/common/edit-dialog/correspondent-edit-dialog/correspondent-edit-dialog.component.ts + 47 + + Edit correspondent + + + Data type + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 12 + + Data type + + + Data type cannot be changed after a field is created + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 14 + + Data type cannot be changed after a field is created + + + Add option + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 20 + + Add option + + + Default Currency + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 44 + + Default Currency + + + 3-character currency code + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 44 + + 3-character currency code + + + Use locale + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.html + 44 + + Use locale + + + Create new custom field + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts + 118 + + Create new custom field + + + Edit custom field + + src/app/components/common/edit-dialog/custom-field-edit-dialog/custom-field-edit-dialog.component.ts + 122 + + Edit custom field + + + Create new document type + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts + 43 + + Create new document type + + + Edit document type + + src/app/components/common/edit-dialog/document-type-edit-dialog/document-type-edit-dialog.component.ts + 47 + + Edit document type + + + Create new item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 121 + + Create new item + + + Edit item + + src/app/components/common/edit-dialog/edit-dialog.component.ts + 125 + + Edit item + + + Create new user group + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts + 36 + + Create new user group + + + Edit user group + + src/app/components/common/edit-dialog/group-edit-dialog/group-edit-dialog.component.ts + 40 + + Edit user group + + + IMAP Server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 14 + + IMAP Server + + + IMAP Port + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 15 + + IMAP Port + + + IMAP Security + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 16 + + IMAP Security + + + Password + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 20 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 15 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 20 + + Password + + + Password is token + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 21 + + Password is token + + + Check if the password above is a token used for authentication + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 21 + + Check if the password above is a token used for authentication + + + Character Set + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 22 + + Character Set + + + Test + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.html + 37 + + Test + + + No encryption + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 20 + + No encryption + + + SSL + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 21 + + SSL + + + STARTTLS + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 22 + + STARTTLS + + + Create new mail account + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 54 + + Create new mail account + + + Edit mail account + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 58 + + Edit mail account + + + Successfully connected to the mail server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 103 + + Successfully connected to the mail server + + + Unable to connect to the mail server + + src/app/components/common/edit-dialog/mail-account-edit-dialog/mail-account-edit-dialog.component.ts + 104 + + Unable to connect to the mail server + + + Account + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 16 + + + src/app/components/manage/mail/mail.component.html + 113 + + Account + + + Order + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 19 + + Order + + + Enabled + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 22 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 19 + + + src/app/components/manage/mail/mail.component.html + 137 + + + src/app/components/manage/workflows/workflows.component.html + 41 + + Enabled + + + Paperless will only process mails that match all of the criteria specified below. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 27 + + Paperless will only process mails that match all of the criteria specified below. + + + Folder + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 29 + + Folder + + + Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 29 + + Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server. + + + Maximum age (days) + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 30 + + Maximum age (days) + + + Filter from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 33 + + Filter from + + + Filter to + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 34 + + Filter to + + + Filter subject + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 35 + + Filter subject + + + Filter body + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 36 + + Filter body + + + Consumption scope + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 42 + + Consumption scope + + + See docs for .eml processing requirements + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 42 + + See docs for .eml processing requirements + + + Attachment type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 43 + + Attachment type + + + PDF layout + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 44 + + PDF layout + + + Include only files matching + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 47 + + Include only files matching + + + Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 47 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + Optional. Wildcards e.g. *.pdf or *invoice* allowed. Can be comma-separated list. Case insensitive. + + + Exclude files matching + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 48 + + Exclude files matching + + + Action + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 54 + + Action + + + Only performed if the mail is processed. + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 54 + + Only performed if the mail is processed. + + + Action parameter + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 56 + + Action parameter + + + Assign title from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 58 + + Assign title from + + + Assign owner from rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 59 + + Assign owner from rule + + + Assign document type + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 63 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 265 + + Assign document type + + + Assign correspondent from + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 64 + + Assign correspondent from + + + Assign correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 66 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 266 + + Assign correspondent + + + Error + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.html + 73 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 113 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 186 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 220 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 254 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 264 + + + src/app/components/common/toast/toast.component.html + 30 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 36 + + Error + + + Only process attachments + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 38 + + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 49 + + Only process attachments + + + Process all files, including 'inline' attachments + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 42 + + Process all files, including 'inline' attachments + + + Process message as .eml + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 53 + + Process message as .eml + + + Process message as .eml and attachments separately + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 57 + + Process message as .eml and attachments separately + + + System default + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 64 + + System default + + + Text, then HTML + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 68 + + Text, then HTML + + + HTML, then text + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 72 + + HTML, then text + + + HTML only + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 76 + + HTML only + + + Text only + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 80 + + Text only + + + Move to specified folder + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 91 + + Move to specified folder + + + Mark as read, don't process read mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 95 + + Mark as read, don't process read mails + + + Flag the mail, don't process flagged mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 99 + + Flag the mail, don't process flagged mails + + + Tag the mail with specified tag, don't process tagged mails + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 103 + + Tag the mail with specified tag, don't process tagged mails + + + Use subject as title + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 110 + + Use subject as title + + + Use attachment filename as title + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 114 + + Use attachment filename as title + + + Do not assign title from this rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 118 + + Do not assign title from this rule + + + Do not assign a correspondent + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 125 + + Do not assign a correspondent + + + Use mail address + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 129 + + Use mail address + + + Use name (or mail address if not available) + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 133 + + Use name (or mail address if not available) + + + Use correspondent selected below + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 137 + + Use correspondent selected below + + + Create new mail rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 191 + + Create new mail rule + + + Edit mail rule + + src/app/components/common/edit-dialog/mail-rule-edit-dialog/mail-rule-edit-dialog.component.ts + 195 + + Edit mail rule + + + Path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 13 + + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 51 + + Path + + + See <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>the documentation</a>. + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 13 + + See <a target='_blank' href='https://docs.paperless-ngx.com/advanced_usage/#file-name-handling'>the documentation</a>. + + + Preview + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 18 + + + src/app/components/document-detail/document-detail.component.html + 309 + + Preview + + + Path test failed + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 30 + + Path test failed + + + No document selected + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 32 + + No document selected + + + Search for a document + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 38 + + Search for a document + + + No documents found + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.html + 39 + + + src/app/components/common/input/document-link/document-link.component.ts + 72 + + No documents found + + + Create new storage path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 82 + + Create new storage path + + + Edit storage path + + src/app/components/common/edit-dialog/storage-path-edit-dialog/storage-path-edit-dialog.component.ts + 86 + + Edit storage path + + + Color + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 13 + + + src/app/components/manage/tag-list/tag-list.component.ts + 51 + + Color + + + Parent + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 15 + + Parent + + + Inbox tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 17 + + Inbox tag + + + Inbox tags are automatically assigned to all consumed documents. + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html + 17 + + Inbox tags are automatically assigned to all consumed documents. + + + Create new tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts + 51 + + Create new tag + + + Edit tag + + src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.ts + 55 + + Edit tag + + + Email + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 14 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 136 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 10 + + + src/app/components/document-detail/document-detail.component.html + 92 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 101 + + Email + + + First name + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 16 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 30 + + First name + + + Last name + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 17 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 31 + + Last name + + + Active + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 22 + + Active + + + Admin + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 26 + + Admin + + + Access logs, Django backend + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 26 + + Access logs, Django backend + + + Superuser + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 30 + + Superuser + + + (Grants all permissions and can view objects) + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 30 + + (Grants all permissions and can view objects) + + + Two-factor Authentication + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 37 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 103 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 137 + + Two-factor Authentication + + + Disable Two-factor Authentication + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 39 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.html + 41 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 168 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 170 + + Disable Two-factor Authentication + + + Create new user account + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 72 + + Create new user account + + + Edit user account + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 76 + + Edit user account + + + Totp deactivated + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 132 + + Totp deactivated + + + Totp deactivation failed + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 135 + + + src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts + 140 + + Totp deactivation failed + + + Sort order + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 16 + + + src/app/components/manage/workflows/workflows.component.html + 18 + + Sort order + + + Triggers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 25 + + + src/app/components/manage/workflows/workflows.component.html + 20 + + Triggers + + + Trigger Workflow On: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 31 + + Trigger Workflow On: + + + Add Trigger + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 33 + + Add Trigger + + + Apply Actions: + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 73 + + Apply Actions: + + + Add Action + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 75 + + Add Action + + + Trigger type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 123 + + Trigger type + + + Set scheduled trigger offset and which date field to use. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 125 + + Set scheduled trigger offset and which date field to use. + + + Offset days + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 130 + + Offset days + + + Positive values will trigger after the date, negative values before. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 134 + + Positive values will trigger after the date, negative values before. + + + Relative to + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 139 + + Relative to + + + Custom field + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 + + Custom field + + + Custom field to use for date. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 143 + + Custom field to use for date. + + + Recurring + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 + + Recurring + + + Trigger is recurring. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 149 + + Trigger is recurring. + + + Recurring interval days + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 153 + + Recurring interval days + + + Repeat the trigger every n days. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 153 + + Repeat the trigger every n days. + + + Trigger for documents that match all filters specified below. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 158 + + Trigger for documents that match all filters specified below. + + + Filter filename + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 161 + + Filter filename + + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 161 + + Apply to documents that match this filename. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive. + + + Filter sources + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 163 + + Filter sources + + + Filter path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 164 + + Filter path + + + 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 + 164 + + Apply to documents that match this path. Wildcards specified as * are allowed. Case-normalized.</a> + + + Filter mail rule + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 165 + + Filter mail rule + + + Apply to documents consumed via this mail rule. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 165 + + Apply to documents consumed via this mail rule. + + + Content matching algorithm + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 168 + + Content matching algorithm + + + Content matching pattern + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 170 + + Content matching pattern + + + Advanced Filters + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 183 + + Advanced Filters + + + Add filter + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 190 + + Add filter + + + No advanced workflow filters defined. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 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 + 224,226 + + Complete the custom field query configuration. + + + Action type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 258 + + Action type + + + Assign title + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 263 + + Assign title + + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 263 + + Can include some placeholders, see <a target='_blank' href='https://docs.paperless-ngx.com/usage/#workflows'>documentation</a>. + + + Assign tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 264 + + Assign tags + + + Assign storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 267 + + Assign storage path + + + Assign custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 268 + + Assign custom fields + + + Assign owner + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 272 + + Assign owner + + + Assign view permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 274 + + Assign view permissions + + + Assign edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 293 + + Assign edit permissions + + + Remove tags + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 320 + + Remove tags + + + Remove all + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 321 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 327 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 333 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 339 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 345 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 352 + + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 358 + + Remove all + + + Remove correspondents + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 326 + + Remove correspondents + + + Remove document types + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 332 + + Remove document types + + + Remove storage paths + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 338 + + Remove storage paths + + + Remove custom fields + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 344 + + Remove custom fields + + + Remove owners + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 351 + + Remove owners + + + Remove permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 357 + + Remove permissions + + + View permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 360 + + View permissions + + + Edit permissions + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 379 + + Edit permissions + + + Email subject + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 407 + + Email subject + + + Email body + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 408 + + Email body + + + Email recipients + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 409 + + Email recipients + + + Attach document + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 410 + + Attach document + + + Webhook url + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 418 + + Webhook url + + + Use parameters for webhook body + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 420 + + Use parameters for webhook body + + + Send webhook payload as JSON + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 421 + + Send webhook payload as JSON + + + Webhook params + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 424 + + Webhook params + + + Webhook body + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 426 + + Webhook body + + + Webhook headers + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 428 + + Webhook headers + + + Include document + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html + 429 + + Include document + + + Consume Folder + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 71 + + Consume Folder + + + API Upload + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 75 + + API Upload + + + Mail Fetch + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 79 + + Mail Fetch + + + Web UI + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 83 + + Web UI + + + Modified + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 98 + + + src/app/data/document.ts + 94 + + Modified + + + Custom Field + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 102 + + Custom Field + + + Consumption Started + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 109 + + Consumption Started + + + Document Added + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 113 + + Document Added + + + Document Updated + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 117 + + Document Updated + + + Scheduled + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 121 + + Scheduled + + + Assignment + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 128 + + Assignment + + + Removal + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 132 + + Removal + + + Webhook + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 140 + + Webhook + + + Has any of these tags + + 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 + + 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 + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 217 + + Does not have these tags + + + Has correspondent + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 224 + + Has correspondent + + + Does not have correspondents + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 232 + + Does not have correspondents + + + Has document type + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 240 + + Has document type + + + Does not have document types + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 248 + + Does not have document types + + + Has storage path + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 256 + + Has storage path + + + Does not have storage paths + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 264 + + Does not have storage paths + + + Matches custom field query + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 272 + + Matches custom field query + + + Create new workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 474 + + Create new workflow + + + Edit workflow + + src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts + 478 + + Edit workflow + + + {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 2,6 + + {VAR_PLURAL, plural, =1 {Email Document} other {Email Documents}} + + + Email address(es) + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 11 + + Email address(es) + + + Subject + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 15 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 32 + + Subject + + + Message + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 19 + + Message + + + Use archive version + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 27 + + Use archive version + + + Send email + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 33 + + Send email + + + Some email servers may reject messages with large attachments. + + src/app/components/common/email-document-dialog/email-document-dialog.component.html + 37 + + Some email servers may reject messages with large attachments. + + + Email sent + + src/app/components/common/email-document-dialog/email-document-dialog.component.ts + 63 + + Email sent + + + Error emailing documents + + src/app/components/common/email-document-dialog/email-document-dialog.component.ts + 69 + + Error emailing documents + + + Error emailing document + + src/app/components/common/email-document-dialog/email-document-dialog.component.ts + 70 + + Error emailing document + + + Include + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 25 + + Include + + + Exclude + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 27 + + Exclude + + + Create + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 58 + + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 65 + + + src/app/components/manage/management-list/management-list.component.html + 13 + + + src/app/components/manage/management-list/management-list.component.html + 13 + + + src/app/components/manage/management-list/management-list.component.html + 13 + + + src/app/components/manage/management-list/management-list.component.html + 13 + + Create + + + Apply + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 64 + + Apply + + + Click again to exclude items. + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.html + 77 + + Click again to exclude items. + + + Not assigned + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 90 + + Filter drop down element to filter for documents with no correspondent/type/tag assigned + Not assigned + + + Open filter + + src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts + 748 + + Open filter + + + Keyboard shortcuts + + src/app/components/common/hotkey-dialog/hotkey-dialog.component.ts + 24 + + Keyboard shortcuts + + + Remove + + src/app/components/common/input/check/check.component.html + 8 + + + src/app/components/common/input/date/date.component.html + 7 + + + src/app/components/common/input/document-link/document-link.component.html + 12 + + + src/app/components/common/input/file/file.component.html + 9 + + + src/app/components/common/input/file/file.component.html + 21 + + + src/app/components/common/input/monetary/monetary.component.html + 9 + + + src/app/components/common/input/number/number.component.html + 9 + + + src/app/components/common/input/select/select.component.html + 10 + + + src/app/components/common/input/switch/switch.component.html + 13 + + + src/app/components/common/input/text/text.component.html + 9 + + + src/app/components/common/input/textarea/textarea.component.html + 9 + + + src/app/components/common/input/url/url.component.html + 7 + + Remove + + + Invalid date. + + src/app/components/common/input/date/date.component.html + 31 + + Invalid date. + + + Suggestions: + + src/app/components/common/input/date/date.component.html + 37 + + + src/app/components/common/input/select/select.component.html + 61 + + + src/app/components/common/input/tags/tags.component.html + 65 + + Suggestions: + + + Filter documents with this + + src/app/components/common/input/date/date.component.ts + 120 + + + src/app/components/common/input/select/select.component.ts + 172 + + Filter documents with this + + + Remove link + + src/app/components/common/input/document-link/document-link.component.html + 43 + + + src/app/components/common/input/document-link/document-link.component.html + 50 + + Remove link + + + Open link + + src/app/components/common/input/document-link/document-link.component.html + 46 + + + src/app/components/common/input/url/url.component.html + 14 + + Open link + + + Not found + + src/app/components/common/input/document-link/document-link.component.html + 51 + + Not found + + + Search for documents + + src/app/components/common/input/document-link/document-link.component.ts + 81 + + Search for documents + + + Selected items + + src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts + 25 + + Selected items + + + No items selected + + src/app/components/common/input/drag-drop-select/drag-drop-select.component.ts + 31 + + No items selected + + + Add + + src/app/components/common/input/entries/entries.component.html + 8 + + + src/app/components/common/permissions-select/permissions-select.component.html + 17 + + Add + + + Upload + + src/app/components/common/input/file/file.component.html + 15 + + Upload + + + Show password + + src/app/components/common/input/password/password.component.html + 6 + + Show password + + + Edit Permissions + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 9 + + Edit Permissions + + + Owner: + + src/app/components/common/input/permissions/permissions-form/permissions-form.component.html + 26 + + Owner: + + + Add item + + src/app/components/common/input/select/select.component.html + 25 + + Used for both types, correspondents, storage paths + Add item + + + Private + + src/app/components/common/input/select/select.component.ts + 71 + + + src/app/components/common/tag/tag.component.html + 20 + + + src/app/components/common/tag/tag.component.html + 23 + + + src/app/pipes/object-name.pipe.ts + 40 + + + src/app/pipes/object-name.pipe.ts + 46 + + Private + + + No items found + + src/app/components/common/input/select/select.component.ts + 106 + + No items found + + + Note: value has not yet been set and will not apply until explicitly changed + + src/app/components/common/input/switch/switch.component.html + 39 + + Note: value has not yet been set and will not apply until explicitly changed + + + Add tag + + src/app/components/common/input/tags/tags.component.html + 17 + + Add tag + + + Remove tag + + src/app/components/common/input/tags/tags.component.html + 23 + + Remove tag + + + Filter documents with these Tags + + src/app/components/common/input/tags/tags.component.html + 55 + + Filter documents with these Tags + + + Read more + + src/app/components/common/page-header/page-header.component.html + 15 + + + src/app/components/common/permissions-select/permissions-select.component.html + 9 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 7 + + Read more + + + Select all pages + + src/app/components/common/pdf-editor/pdf-editor.component.html + 9 + + Select all pages + + + Deselect all pages + + src/app/components/common/pdf-editor/pdf-editor.component.html + 12 + + Deselect all pages + + + Rotate selected pages counter-clockwise + + src/app/components/common/pdf-editor/pdf-editor.component.html + 17 + + Rotate selected pages counter-clockwise + + + Rotate selected pages clockwise + + src/app/components/common/pdf-editor/pdf-editor.component.html + 20 + + Rotate selected pages clockwise + + + Delete selected pages + + src/app/components/common/pdf-editor/pdf-editor.component.html + 23 + + Delete selected pages + + + Rotate page counter-clockwise + + src/app/components/common/pdf-editor/pdf-editor.component.html + 33 + + Rotate page counter-clockwise + + + Rotate page clockwise + + src/app/components/common/pdf-editor/pdf-editor.component.html + 36 + + Rotate page clockwise + + + Delete page + + src/app/components/common/pdf-editor/pdf-editor.component.html + 41 + + Delete page + + + Add / remove document split here + + src/app/components/common/pdf-editor/pdf-editor.component.html + 44 + + Add / remove document split here + + + Split here + + src/app/components/common/pdf-editor/pdf-editor.component.html + 70 + + Split here + + + Create new document(s) + + src/app/components/common/pdf-editor/pdf-editor.component.html + 82 + + Create new document(s) + + + Update existing document + + src/app/components/common/pdf-editor/pdf-editor.component.html + 87 + + Update existing document + + + Copy metadata + + src/app/components/common/pdf-editor/pdf-editor.component.html + 94 + + Copy metadata + + + Delete original + + src/app/components/common/pdf-editor/pdf-editor.component.html + 98 + + Delete original + + + Merge with existing permissions + + src/app/components/common/permissions-dialog/permissions-dialog.component.html + 14 + + Merge with existing permissions + + + Set permissions + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 41 + + Set permissions + + + Edit permissions for + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 46 + + Edit permissions for + + + Existing owner, user and group permissions will be merged with these settings. + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 87 + + Existing owner, user and group permissions will be merged with these settings. + + + Any and all existing owner, user and group permissions will be replaced. + + src/app/components/common/permissions-dialog/permissions-dialog.component.ts + 88 + + Any and all existing owner, user and group permissions will be replaced. + + + My documents + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 26 + + My documents + + + Shared with me + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 36 + + Shared with me + + + Shared by me + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 46 + + Shared by me + + + Unowned + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 56 + + Unowned + + + Hide unowned + + src/app/components/common/permissions-filter-dropdown/permissions-filter-dropdown.component.html + 86 + + Hide unowned + + + Global permissions define what areas of the app and API endpoints users can access. + + src/app/components/common/permissions-select/permissions-select.component.html + 8 + + Global permissions define what areas of the app and API endpoints users can access. + + + Type + + src/app/components/common/permissions-select/permissions-select.component.html + 15 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 56 + + Type + + + Change + + src/app/components/common/permissions-select/permissions-select.component.html + 18 + + Change + + + Inherited from group + + src/app/components/common/permissions-select/permissions-select.component.ts + 78 + + Inherited from group + + + Error loading preview + + src/app/components/common/preview-popup/preview-popup.component.html + 10 + + Error loading preview + + + Open preview + + src/app/components/common/preview-popup/preview-popup.component.ts + 52 + + Open preview + + + Edit Profile + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 3 + + Edit Profile + + + Confirm Email + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 15 + + Confirm Email + + + Confirm Password + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 25 + + Confirm Password + + + API Auth Token + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 33 + + API Auth Token + + + Copy + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 37 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 44 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 155 + + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 28 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 284 + + + src/app/components/manage/mail/mail.component.html + 156 + + + src/app/components/manage/mail/mail.component.html + 174 + + + src/app/components/manage/workflows/workflows.component.html + 56 + + + src/app/components/manage/workflows/workflows.component.html + 71 + + Copy + + + Regenerate auth token + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 47 + + Regenerate auth token + + + Copied! + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 54 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 162 + + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 39 + + Copied! + + + Warning: changing the token cannot be undone + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 56 + + Warning: changing the token cannot be undone + + + Connected social accounts + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 62 + + Connected social accounts + + + Set a password before disconnecting social account. + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 66 + + Set a password before disconnecting social account. + + + Disconnect + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 72 + + Disconnect + + + Disconnect social account + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 74 + + Disconnect social account + + + Warning: disconnecting social accounts cannot be undone + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 84 + + Warning: disconnecting social accounts cannot be undone + + + Connect new social account + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 89 + + Connect new social account + + + Scan the QR code with your authenticator app and then enter the code below + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 114 + + Scan the QR code with your authenticator app and then enter the code below + + + Authenticator secret + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 117 + + Authenticator secret + + + You can store this secret and use it to reinstall your authenticator app at a later time. + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 118 + + You can store this secret and use it to reinstall your authenticator app at a later time. + + + Code + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 121 + + Code + + + Recovery codes will not be shown again, make sure to save them. + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 140 + + Recovery codes will not be shown again, make sure to save them. + + + Copy codes + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.html + 158 + + Copy codes + + + Emails must match + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 143 + + Emails must match + + + Passwords must match + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 171 + + Passwords must match + + + Profile updated successfully + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 193 + + Profile updated successfully + + + Error saving profile + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 207 + + Error saving profile + + + Error generating auth token + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 225 + + Error generating auth token + + + Error disconnecting social account + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 250 + + Error disconnecting social account + + + Error fetching TOTP settings + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 269 + + Error fetching TOTP settings + + + TOTP activated successfully + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 290 + + TOTP activated successfully + + + Error activating TOTP + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 292 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 298 + + Error activating TOTP + + + TOTP deactivated successfully + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 314 + + TOTP deactivated successfully + + + Error deactivating TOTP + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 316 + + + src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts + 321 + + Error deactivating TOTP + + + No existing links + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 8,10 + + No existing links + + + Share + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 32 + + Share + + + Share archive version + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 48 + + Share archive version + + + Expires + + src/app/components/common/share-links-dialog/share-links-dialog.component.html + 52 + + Expires + + + 1 day + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 25 + + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 102 + + 1 day + + + 7 days + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 26 + + 7 days + + + 30 days + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 27 + + 30 days + + + Never + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 28 + + Never + + + Share Links + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 32 + + + src/app/components/document-detail/document-detail.component.html + 88 + + Share Links + + + Error retrieving links + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 83 + + Error retrieving links + + + days + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 102 + + days + + + Error deleting link + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 131 + + Error deleting link + + + Error creating link + + src/app/components/common/share-links-dialog/share-links-dialog.component.ts + 159 + + Error creating link + + + Environment + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 18 + + Environment + + + Paperless-ngx Version + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 22 + + Paperless-ngx Version + + + Install Type + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 35 + + Install Type + + + Server OS + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 37 + + Server OS + + + Media Storage + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 39 + + Media Storage + + + available + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 42 + + available + + + total + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 42 + + total + + + Database + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 52 + + Database + + + Status + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 58 + + + src/app/components/common/toast/toast.component.html + 28 + + + src/app/components/manage/mail/mail.component.html + 114 + + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 35 + + + src/app/components/manage/workflows/workflows.component.html + 19 + + Status + + + Migration Status + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 76 + + Migration Status + + + Up to date + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 80 + + Up to date + + + Latest Migration + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 85 + + Latest Migration + + + Pending Migrations + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 87 + + Pending Migrations + + + Tasks Queue + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 105 + + Tasks Queue + + + Redis Status + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 109 + + Redis Status + + + Celery Status + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 127 + + Celery Status + + + Health + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 153 + + Health + + + Search Index + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 157 + + Search Index + + + Run Task + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 177 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 211 + + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 245 + + Run Task + + + Last Updated + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 184 + + Last Updated + + + Classifier + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 189 + + Classifier + + + Last Trained + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 218 + + Last Trained + + + Sanity Checker + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 223 + + Sanity Checker + + + Last Run + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 252 + + Last Run + + + WebSocket Connection + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 257 + + WebSocket Connection + + + OK + + src/app/components/common/system-status-dialog/system-status-dialog.component.html + 261 + + OK + + + Copy Raw Error + + src/app/components/common/toast/toast.component.html + 43 + + Copy Raw Error + + + Hint: saved views can be created from the documents list + + src/app/components/dashboard/dashboard.component.html + 42 + + Hint: saved views can be created from the documents list + + + Hello , welcome to + + src/app/components/dashboard/dashboard.component.ts + 61 + + Hello , welcome to + + + Welcome to + + src/app/components/dashboard/dashboard.component.ts + 63 + + Welcome to + + + Dashboard updated + + src/app/components/dashboard/dashboard.component.ts + 94 + + Dashboard updated + + + Error updating dashboard + + src/app/components/dashboard/dashboard.component.ts + 97 + + Error updating dashboard + + + Show all + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 10 + + Show all + + + Filter by correspondent + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 54 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 25 + + + src/app/components/document-list/document-list.component.html + 323 + + Filter by correspondent + + + Filter by document type + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 64 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 96 + + + src/app/components/document-list/document-list.component.html + 363 + + Filter by document type + + + Filter by storage path + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 69 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 102 + + + src/app/components/document-list/document-list.component.html + 370 + + Filter by storage path + + + Filter by owner + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 74 + + Filter by owner + + + Yes + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 84 + + + src/app/components/document-list/document-list.component.html + 391 + + Yes + + + No + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 84 + + + src/app/components/document-list/document-list.component.html + 391 + + No + + + No documents + + src/app/components/dashboard/widgets/saved-view-widget/saved-view-widget.component.html + 149 + + No documents + + + Statistics + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 1 + + Statistics + + + Go to inbox + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 28 + + Go to inbox + + + Documents in inbox + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 29 + + Documents in inbox + + + Go to documents + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 33 + + Go to documents + + + Total documents + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 34 + + Total documents + + + Total characters + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 38 + + Total characters + + + Current ASN + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html + 43 + + Current ASN + + + Other + + src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.ts + 79 + + Other + + + Upload documents + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 6 + + Upload documents + + + or drop files anywhere + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 7 + + or drop files anywhere + + + Dismiss completed + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.html + 23 + + This button dismisses all status messages about processed documents on the dashboard (failed and successful) + Dismiss completed + + + Processing: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 57 + + Processing: + + + Failed: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 60 + + Failed: + + + Added: + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 63 + + Added: + + + , + + src/app/components/dashboard/widgets/upload-file-widget/upload-file-widget.component.ts + 66 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 386 + + this string is used to separate processing, failed and added on the file upload widget + , + + + Paperless-ngx is running! + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 2 + + Paperless-ngx is running! + + + You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 3 + + You're ready to start uploading documents! Explore the various features of this web app on your own, or start a quick tour using the button below. + + + More detail on how to use and configure Paperless-ngx is always available in the documentation. + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 4 + + More detail on how to use and configure Paperless-ngx is always available in the documentation. + + + Thanks for being a part of the Paperless-ngx community! + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 7 + + Thanks for being a part of the Paperless-ngx community! + + + Start the tour + + src/app/components/dashboard/widgets/welcome-widget/welcome-widget.component.html + 8 + + Start the tour + + + Searching document with asn + + src/app/components/document-asn/document-asn.component.html + 1 + + Searching document with asn + + + Page + + src/app/components/document-detail/document-detail.component.html + 5 + + + src/app/components/document-list/document-list.component.html + 27 + + Page + + + of + + src/app/components/document-detail/document-detail.component.html + 7,8 + + of + + + - + + src/app/components/document-detail/document-detail.component.html + 11 + + - + + + + + + src/app/components/document-detail/document-detail.component.html + 19 + + + + + + Download original + + src/app/components/document-detail/document-detail.component.html + 41 + + Download original + + + Reprocess + + src/app/components/document-detail/document-detail.component.html + 54 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 91 + + Reprocess + + + Print + + src/app/components/document-detail/document-detail.component.html + 58 + + Print + + + More like this + + src/app/components/document-detail/document-detail.component.html + 62 + + + src/app/components/document-list/document-card-large/document-card-large.component.html + 69 + + More like this + + + PDF Editor + + src/app/components/document-detail/document-detail.component.html + 66 + + + src/app/components/document-detail/document-detail.component.ts + 1392 + + PDF Editor + + + Send + + src/app/components/document-detail/document-detail.component.html + 84 + + Send + + + Previous + + src/app/components/document-detail/document-detail.component.html + 110 + + Previous + + + Details + + src/app/components/document-detail/document-detail.component.html + 123 + + Details + + + Title + + src/app/components/document-detail/document-detail.component.html + 126 + + + src/app/components/document-list/document-list.component.html + 221 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 179 + + + src/app/data/document.ts + 30 + + + src/app/data/document.ts + 90 + + Title + + + Archive serial number + + src/app/components/document-detail/document-detail.component.html + 127 + + Archive serial number + + + Date created + + src/app/components/document-detail/document-detail.component.html + 128 + + Date created + + + Correspondent + + src/app/components/document-detail/document-detail.component.html + 130 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 19 + + + src/app/components/document-list/document-list.component.html + 211 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 50 + + + src/app/data/document.ts + 46 + + + src/app/data/document.ts + 89 + + Correspondent + + + Document type + + src/app/components/document-detail/document-detail.component.html + 132 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 33 + + + src/app/components/document-list/document-list.component.html + 251 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 61 + + + src/app/data/document.ts + 50 + + + src/app/data/document.ts + 91 + + Document type + + + Storage path + + src/app/components/document-detail/document-detail.component.html + 134 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 47 + + + src/app/components/document-list/document-list.component.html + 260 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 72 + + + src/app/data/document.ts + 54 + + Storage path + + + Default + + src/app/components/document-detail/document-detail.component.html + 135 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Default + + + Content + + src/app/components/document-detail/document-detail.component.html + 239 + + Content + + + Metadata + + src/app/components/document-detail/document-detail.component.html + 248 + + + src/app/components/document-detail/metadata-collapse/metadata-collapse.component.ts + 20 + + Metadata + + + Date modified + + src/app/components/document-detail/document-detail.component.html + 255 + + Date modified + + + Date added + + src/app/components/document-detail/document-detail.component.html + 259 + + Date added + + + Media filename + + src/app/components/document-detail/document-detail.component.html + 263 + + Media filename + + + Original filename + + src/app/components/document-detail/document-detail.component.html + 267 + + Original filename + + + Original MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 271 + + Original MD5 checksum + + + Original file size + + src/app/components/document-detail/document-detail.component.html + 275 + + Original file size + + + Original mime type + + src/app/components/document-detail/document-detail.component.html + 279 + + Original mime type + + + Archive MD5 checksum + + src/app/components/document-detail/document-detail.component.html + 284 + + Archive MD5 checksum + + + Archive file size + + src/app/components/document-detail/document-detail.component.html + 290 + + Archive file size + + + Original document metadata + + src/app/components/document-detail/document-detail.component.html + 299 + + Original document metadata + + + Archived document metadata + + src/app/components/document-detail/document-detail.component.html + 302 + + Archived document metadata + + + Notes + + src/app/components/document-detail/document-detail.component.html + 321,324 + + Notes + + + History + + src/app/components/document-detail/document-detail.component.html + 332 + + History + + + Save & next + + src/app/components/document-detail/document-detail.component.html + 369 + + Save & next + + + Save & close + + src/app/components/document-detail/document-detail.component.html + 372 + + Save & close + + + Document loading... + + src/app/components/document-detail/document-detail.component.html + 382 + + Document loading... + + + Enter Password + + src/app/components/document-detail/document-detail.component.html + 436 + + Enter Password + + + An error occurred loading content: + + src/app/components/document-detail/document-detail.component.ts + 416,418 + + An error occurred loading content: + + + Document changes detected + + src/app/components/document-detail/document-detail.component.ts + 450 + + Document changes detected + + + The version of this document in your browser session appears older than the existing version. + + src/app/components/document-detail/document-detail.component.ts + 451 + + The version of this document in your browser session appears older than the existing version. + + + Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. + + src/app/components/document-detail/document-detail.component.ts + 452 + + Saving the document here may overwrite other changes that were made. To restore the existing version, discard your changes or close the document. + + + Ok + + src/app/components/document-detail/document-detail.component.ts + 454 + + Ok + + + Next document + + src/app/components/document-detail/document-detail.component.ts + 580 + + Next document + + + Previous document + + src/app/components/document-detail/document-detail.component.ts + 590 + + Previous document + + + Close document + + src/app/components/document-detail/document-detail.component.ts + 598 + + + src/app/services/open-documents.service.ts + 130 + + Close document + + + Save document + + src/app/components/document-detail/document-detail.component.ts + 605 + + Save document + + + Save and close / next + + src/app/components/document-detail/document-detail.component.ts + 614 + + Save and close / next + + + Error retrieving metadata + + src/app/components/document-detail/document-detail.component.ts + 669 + + Error retrieving metadata + + + Error retrieving suggestions. + + src/app/components/document-detail/document-detail.component.ts + 698 + + Error retrieving suggestions. + + + Document "" saved successfully. + + src/app/components/document-detail/document-detail.component.ts + 870 + + + src/app/components/document-detail/document-detail.component.ts + 894 + + Document "" saved successfully. + + + Error saving document "" + + src/app/components/document-detail/document-detail.component.ts + 900 + + Error saving document "" + + + Error saving document + + src/app/components/document-detail/document-detail.component.ts + 950 + + Error saving document + + + Do you really want to move the document "" to the trash? + + src/app/components/document-detail/document-detail.component.ts + 982 + + Do you really want to move the document "" to the trash? + + + Documents can be restored prior to permanent deletion. + + src/app/components/document-detail/document-detail.component.ts + 983 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 754 + + Documents can be restored prior to permanent deletion. + + + Move to trash + + src/app/components/document-detail/document-detail.component.ts + 985 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 756 + + Move to trash + + + Error deleting document + + src/app/components/document-detail/document-detail.component.ts + 1004 + + Error deleting document + + + Reprocess confirm + + src/app/components/document-detail/document-detail.component.ts + 1024 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 794 + + Reprocess confirm + + + This operation will permanently recreate the archive file for this document. + + src/app/components/document-detail/document-detail.component.ts + 1025 + + This operation will permanently recreate the archive file for this document. + + + The archive file will be re-generated with the current settings. + + src/app/components/document-detail/document-detail.component.ts + 1026 + + The archive file will be re-generated with the current settings. + + + Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + src/app/components/document-detail/document-detail.component.ts + 1036 + + Reprocess operation for "" will begin in the background. Close and re-open or reload this document after the operation has completed to see new content. + + + Error executing operation + + src/app/components/document-detail/document-detail.component.ts + 1047 + + Error executing operation + + + Error downloading document + + src/app/components/document-detail/document-detail.component.ts + 1096 + + Error downloading document + + + Page Fit + + src/app/components/document-detail/document-detail.component.ts + 1173 + + Page Fit + + + PDF edit operation for "" will begin in the background. + + src/app/components/document-detail/document-detail.component.ts + 1411 + + PDF edit operation for "" will begin in the background. + + + Error executing PDF edit operation + + src/app/components/document-detail/document-detail.component.ts + 1423 + + Error executing PDF edit operation + + + Print failed. + + src/app/components/document-detail/document-detail.component.ts + 1460 + + Print failed. + + + Error loading document for printing. + + src/app/components/document-detail/document-detail.component.ts + 1472 + + Error loading document for printing. + + + An error occurred loading tiff: + + src/app/components/document-detail/document-detail.component.ts + 1537 + + + src/app/components/document-detail/document-detail.component.ts + 1541 + + An error occurred loading tiff: + + + No entries found. + + src/app/components/document-history/document-history.component.html + 10 + + No entries found. + + + Edit: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 3 + + Edit: + + + Filter tags + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 6 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 40 + + Filter tags + + + Filter correspondents + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 20 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 51 + + Filter correspondents + + + Filter document types + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 34 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 62 + + Filter document types + + + Filter storage paths + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 48 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 73 + + Filter storage paths + + + Custom fields + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 61 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 84 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 187 + + Custom fields + + + Filter custom fields + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 62 + + Filter custom fields + + + Set values + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 70 + + Set values + + + Rotate + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 94 + + Rotate + + + Merge + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 97 + + Merge + + + Include: + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 123 + + Include: + + + Archived files + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 127 + + Archived files + + + Original files + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 131 + + Original files + + + Use formatted filename + + src/app/components/document-list/bulk-editor/bulk-editor.component.html + 136 + + Use formatted filename + + + Error executing bulk operation + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 290 + + Error executing bulk operation + + + "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 378 + + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 384 + + "" + + + "" and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 380 + + This is for messages like 'modify "tag1" and "tag2"' + "" and "" + + + and "" + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 388,390 + + this is for messages like 'modify "tag1", "tag2" and "tag3"' + and "" + + + Confirm tags assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 405 + + Confirm tags assignment + + + This operation will add the tag "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 411 + + This operation will add the tag "" to selected document(s). + + + This operation will add the tags to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 416,418 + + This operation will add the tags to selected document(s). + + + This operation will remove the tag "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 424 + + This operation will remove the tag "" from selected document(s). + + + This operation will remove the tags from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 429,431 + + This operation will remove the tags from selected document(s). + + + This operation will add the tags and remove the tags on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 433,437 + + This operation will add the tags and remove the tags on selected document(s). + + + Confirm correspondent assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 474 + + Confirm correspondent assignment + + + This operation will assign the correspondent "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 476 + + This operation will assign the correspondent "" to selected document(s). + + + This operation will remove the correspondent from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 478 + + This operation will remove the correspondent from selected document(s). + + + Confirm document type assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 512 + + Confirm document type assignment + + + This operation will assign the document type "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 514 + + This operation will assign the document type "" to selected document(s). + + + This operation will remove the document type from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 516 + + This operation will remove the document type from selected document(s). + + + Confirm storage path assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 550 + + Confirm storage path assignment + + + This operation will assign the storage path "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 552 + + This operation will assign the storage path "" to selected document(s). + + + This operation will remove the storage path from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 554 + + This operation will remove the storage path from selected document(s). + + + Confirm custom field assignment + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 583 + + Confirm custom field assignment + + + This operation will assign the custom field "" to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 589 + + This operation will assign the custom field "" to selected document(s). + + + This operation will assign the custom fields to selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 594,596 + + This operation will assign the custom fields to selected document(s). + + + This operation will remove the custom field "" from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 602 + + This operation will remove the custom field "" from selected document(s). + + + This operation will remove the custom fields from selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 607,609 + + This operation will remove the custom fields from selected document(s). + + + This operation will assign the custom fields and remove the custom fields on selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 611,615 + + This operation will assign the custom fields and remove the custom fields on selected document(s). + + + Move selected document(s) to the trash? + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 753 + + Move selected document(s) to the trash? + + + This operation will permanently recreate the archive files for selected document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 795 + + This operation will permanently recreate the archive files for selected document(s). + + + The archive files will be re-generated with the current settings. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 796 + + The archive files will be re-generated with the current settings. + + + Rotate confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 828 + + Rotate confirm + + + This operation will permanently rotate the original version of document(s). + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 829 + + This operation will permanently rotate the original version of document(s). + + + Merge confirm + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 848 + + Merge confirm + + + This operation will merge selected documents into a new document. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 849 + + This operation will merge selected documents into a new document. + + + Merged document will be queued for consumption. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 868 + + Merged document will be queued for consumption. + + + Custom fields updated. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 892 + + Custom fields updated. + + + Error updating custom fields. + + src/app/components/document-list/bulk-editor/bulk-editor.component.ts + 901 + + Error updating custom fields. + + + {VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}} + + src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html + 3,7 + + {VAR_PLURAL, plural, =1 {Set custom fields for 1 document} other {Set custom fields for documents}} + + + Select custom fields + + src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html + 13 + + Select custom fields + + + {VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also + remove custom fields from the selected documents.}} + + src/app/components/document-list/bulk-editor/custom-fields-bulk-edit-dialog/custom-fields-bulk-edit-dialog.component.html + 73,78 + + {VAR_PLURAL, plural, =1 {This operation will also remove 1 custom field from the selected documents.} other {This operation will also + remove custom fields from the selected documents.}} + + + Filter by tag + + src/app/components/document-list/document-card-large/document-card-large.component.html + 36 + + + src/app/components/document-list/document-list.component.html + 339 + + Filter by tag + + + View notes + + src/app/components/document-list/document-card-large/document-card-large.component.html + 91 + + View notes + + + Created: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 115,116 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 76,77 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 91,92 + + Created: + + + Added: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 116,117 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 77,78 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 92,93 + + Added: + + + Modified: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 117,118 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 78,79 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 93,94 + + Modified: + + + {VAR_PLURAL, plural, =1 {1 page} other { pages}} + + src/app/components/document-list/document-card-large/document-card-large.component.html + 134 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 106 + + {VAR_PLURAL, plural, =1 {1 page} other { pages}} + + + Shared + + src/app/components/document-list/document-card-large/document-card-large.component.html + 144 + + + src/app/components/document-list/document-card-small/document-card-small.component.html + 125 + + + src/app/data/document.ts + 66 + + + src/app/pipes/username.pipe.ts + 35 + + Shared + + + Score: + + src/app/components/document-list/document-card-large/document-card-large.component.html + 149 + + Score: + + + Toggle tag filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 20 + + Toggle tag filter + + + Toggle correspondent filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 43 + + Toggle correspondent filter + + + Toggle document type filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 59 + + Toggle document type filter + + + Toggle storage path filter + + src/app/components/document-list/document-card-small/document-card-small.component.html + 66 + + Toggle storage path filter + + + Select + + src/app/components/document-list/document-list.component.html + 5 + + + src/app/data/custom-field.ts + 51 + + Select + + + Select none + + src/app/components/document-list/document-list.component.html + 11 + + Select none + + + Select page + + src/app/components/document-list/document-list.component.html + 12 + + + src/app/components/document-list/document-list.component.ts + 315 + + Select page + + + Select all + + src/app/components/document-list/document-list.component.html + 13 + + + src/app/components/document-list/document-list.component.ts + 308 + + Select all + + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + + + None + + src/app/components/document-list/document-list.component.html + 23 + + + src/app/components/manage/management-list/management-list.component.ts + 120 + + + src/app/data/matching-model.ts + 45 + + None + + + Sort + + src/app/components/document-list/document-list.component.html + 68 + + Sort + + + Views + + src/app/components/document-list/document-list.component.html + 94 + + Views + + + Save "" + + src/app/components/document-list/document-list.component.html + 113 + + Save "" + + + Save as... + + src/app/components/document-list/document-list.component.html + 116 + + Save as... + + + All saved views + + src/app/components/document-list/document-list.component.html + 117 + + All saved views + + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + src/app/components/document-list/document-list.component.html + 137 + + {VAR_PLURAL, plural, =1 {Selected of one document} other {Selected of documents}} + + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + src/app/components/document-list/document-list.component.html + 141 + + {VAR_PLURAL, plural, =1 {One document} other { documents}} + + + (filtered) + + src/app/components/document-list/document-list.component.html + 143 + + (filtered) + + + Reset filters + + src/app/components/document-list/document-list.component.html + 148 + + + src/app/components/document-list/filter-editor/filter-editor.component.html + 107 + + Reset filters + + + Error while loading documents + + src/app/components/document-list/document-list.component.html + 169 + + Error while loading documents + + + Sort by ASN + + src/app/components/document-list/document-list.component.html + 198 + + Sort by ASN + + + ASN + + src/app/components/document-list/document-list.component.html + 202 + + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 184 + + + src/app/data/document.ts + 70 + + + src/app/data/document.ts + 88 + + ASN + + + Sort by correspondent + + src/app/components/document-list/document-list.component.html + 207 + + Sort by correspondent + + + Sort by title + + src/app/components/document-list/document-list.component.html + 216 + + Sort by title + + + Sort by owner + + src/app/components/document-list/document-list.component.html + 229 + + Sort by owner + + + Owner + + src/app/components/document-list/document-list.component.html + 233 + + + src/app/data/document.ts + 62 + + + src/app/data/document.ts + 96 + + Owner + + + Sort by notes + + src/app/components/document-list/document-list.component.html + 238 + + Sort by notes + + + Sort by document type + + src/app/components/document-list/document-list.component.html + 247 + + Sort by document type + + + Sort by storage path + + src/app/components/document-list/document-list.component.html + 256 + + Sort by storage path + + + Sort by created date + + src/app/components/document-list/document-list.component.html + 265 + + Sort by created date + + + Sort by added date + + src/app/components/document-list/document-list.component.html + 274 + + Sort by added date + + + Sort by number of pages + + src/app/components/document-list/document-list.component.html + 283 + + Sort by number of pages + + + Pages + + src/app/components/document-list/document-list.component.html + 287 + + + src/app/data/document.ts + 74 + + + src/app/data/document.ts + 97 + + + src/app/data/paperless-config.ts + 91 + + Pages + + + Shared + + src/app/components/document-list/document-list.component.html + 290,292 + + Shared + + + Sort by + + src/app/components/document-list/document-list.component.html + 297,298 + + Sort by + + + Edit document + + src/app/components/document-list/document-list.component.html + 331 + + Edit document + + + Preview document + + src/app/components/document-list/document-list.component.html + 332 + + Preview document + + + Reset filters / selection + + src/app/components/document-list/document-list.component.ts + 296 + + Reset filters / selection + + + Open first [selected] document + + src/app/components/document-list/document-list.component.ts + 324 + + Open first [selected] document + + + Previous page + + src/app/components/document-list/document-list.component.ts + 340 + + Previous page + + + Next page + + src/app/components/document-list/document-list.component.ts + 352 + + Next page + + + View "" saved successfully. + + src/app/components/document-list/document-list.component.ts + 385 + + View "" saved successfully. + + + Failed to save view "". + + src/app/components/document-list/document-list.component.ts + 391 + + Failed to save view "". + + + View "" created successfully. + + src/app/components/document-list/document-list.component.ts + 437 + + View "" created successfully. + + + Dates + + src/app/components/document-list/filter-editor/filter-editor.component.html + 90 + + Dates + + + Title & content + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 182 + + Title & content + + + File type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 189 + + File type + + + More like + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 198 + + More like + + + equals + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 204 + + equals + + + is empty + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 208 + + is empty + + + is not empty + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 212 + + is not empty + + + greater than + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 216 + + greater than + + + less than + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 220 + + less than + + + Correspondent: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 261,265 + + Correspondent: + + + Without correspondent + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 267 + + Without correspondent + + + Document type: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 273,277 + + Document type: + + + Without document type + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 279 + + Without document type + + + Storage path: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 285,289 + + Storage path: + + + Without storage path + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 291 + + Without storage path + + + Tag: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 295,297 + + Tag: + + + Without any tag + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 301 + + Without any tag + + + Custom fields query + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 305 + + Custom fields query + + + Title: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 308 + + Title: + + + ASN: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 311 + + ASN: + + + Owner: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 314 + + Owner: + + + Owner not in: + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 317 + + Owner not in: + + + Without an owner + + src/app/components/document-list/filter-editor/filter-editor.component.ts + 320 + + Without an owner + + + Save current view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 3 + + Save current view + + + Show in sidebar + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 9 + + + src/app/components/manage/saved-views/saved-views.component.html + 24 + + Show in sidebar + + + Show on dashboard + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 10 + + + src/app/components/manage/saved-views/saved-views.component.html + 20 + + Show on dashboard + + + Filter rules error occurred while saving this view + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 13 + + Filter rules error occurred while saving this view + + + The error returned was + + src/app/components/document-list/save-view-config-dialog/save-view-config-dialog.component.html + 14 + + The error returned was + + + Enter note + + src/app/components/document-notes/document-notes.component.html + 5 + + Enter note + + + Please enter a note. + + src/app/components/document-notes/document-notes.component.html + 6,8 + + Please enter a note. + + + Add note + + src/app/components/document-notes/document-notes.component.html + 14 + + Add note + + + Delete note + + src/app/components/document-notes/document-notes.component.html + 25 + + + src/app/components/document-notes/document-notes.component.html + 27 + + Delete note + + + Error saving note + + src/app/components/document-notes/document-notes.component.ts + 81 + + Error saving note + + + Error deleting note + + src/app/components/document-notes/document-notes.component.ts + 95 + + Error deleting note + + + Drop files to begin upload + + src/app/components/file-drop/file-drop.component.html + 6 + + Drop files to begin upload + + + Initiating upload... + + src/app/components/file-drop/file-drop.component.ts + 137 + + + src/app/components/file-drop/file-drop.component.ts + 146 + + Initiating upload... + + + Failed to read dropped items: + + src/app/components/file-drop/file-drop.component.ts + 142 + + Failed to read dropped items: + + + correspondent + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 47 + + correspondent + + + correspondents + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 48 + + correspondents + + + Last used + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 53 + + Last used + + + Do you really want to delete the correspondent ""? + + src/app/components/manage/correspondent-list/correspondent-list.component.ts + 78 + + Do you really want to delete the correspondent ""? + + + Customize the data fields that can be attached to documents. + + src/app/components/manage/custom-fields/custom-fields.component.html + 4 + + Customize the data fields that can be attached to documents. + + + Add Field + + src/app/components/manage/custom-fields/custom-fields.component.html + 9 + + Add Field + + + Data Type + + src/app/components/manage/custom-fields/custom-fields.component.html + 18 + + Data Type + + + Filter Documents () + + src/app/components/manage/custom-fields/custom-fields.component.html + 45 + + + src/app/components/manage/management-list/management-list.component.html + 117 + + + src/app/components/manage/management-list/management-list.component.html + 117 + + + src/app/components/manage/management-list/management-list.component.html + 117 + + + src/app/components/manage/management-list/management-list.component.html + 117 + + Filter Documents () + + + No fields defined. + + src/app/components/manage/custom-fields/custom-fields.component.html + 70 + + No fields defined. + + + Confirm delete field + + src/app/components/manage/custom-fields/custom-fields.component.ts + 102 + + Confirm delete field + + + This operation will permanently delete this field. + + src/app/components/manage/custom-fields/custom-fields.component.ts + 103 + + This operation will permanently delete this field. + + + Deleted field "" + + src/app/components/manage/custom-fields/custom-fields.component.ts + 112 + + Deleted field "" + + + Error deleting field "". + + src/app/components/manage/custom-fields/custom-fields.component.ts + 121 + + Error deleting field "". + + + document type + + src/app/components/manage/document-type-list/document-type-list.component.ts + 43 + + document type + + + document types + + src/app/components/manage/document-type-list/document-type-list.component.ts + 44 + + document types + + + Do you really want to delete the document type ""? + + src/app/components/manage/document-type-list/document-type-list.component.ts + 49 + + Do you really want to delete the document type ""? + + + Mail Settings + + src/app/components/manage/mail/mail.component.html + 2 + + Mail Settings + + + Mail accounts + + src/app/components/manage/mail/mail.component.html + 12 + + Mail accounts + + + Add Account + + src/app/components/manage/mail/mail.component.html + 14 + + Add Account + + + Connect Gmail Account + + src/app/components/manage/mail/mail.component.html + 18 + + Connect Gmail Account + + + Connect Outlook Account + + src/app/components/manage/mail/mail.component.html + 23 + + Connect Outlook Account + + + Server + + src/app/components/manage/mail/mail.component.html + 31 + + Server + + + Process Mail + + src/app/components/manage/mail/mail.component.html + 68 + + + src/app/components/manage/mail/mail.component.html + 86 + + Process Mail + + + No mail accounts defined. + + src/app/components/manage/mail/mail.component.html + 95 + + No mail accounts defined. + + + Mail rules + + src/app/components/manage/mail/mail.component.html + 103 + + Mail rules + + + Add Rule + + src/app/components/manage/mail/mail.component.html + 105 + + Add Rule + + + Sort Order + + src/app/components/manage/mail/mail.component.html + 112 + + Sort Order + + + Disabled + + src/app/components/manage/mail/mail.component.html + 137 + + + src/app/components/manage/workflows/workflows.component.html + 41 + + Disabled + + + View Processed Mail + + src/app/components/manage/mail/mail.component.html + 143 + + View Processed Mail + + + No mail rules defined. + + src/app/components/manage/mail/mail.component.html + 183 + + No mail rules defined. + + + Error retrieving mail accounts + + src/app/components/manage/mail/mail.component.ts + 105 + + Error retrieving mail accounts + + + Error retrieving mail rules + + src/app/components/manage/mail/mail.component.ts + 127 + + Error retrieving mail rules + + + OAuth2 authentication success + + src/app/components/manage/mail/mail.component.ts + 135 + + OAuth2 authentication success + + + OAuth2 authentication failed, see logs for details + + src/app/components/manage/mail/mail.component.ts + 146 + + OAuth2 authentication failed, see logs for details + + + Saved account "". + + src/app/components/manage/mail/mail.component.ts + 170 + + Saved account "". + + + Error saving account. + + src/app/components/manage/mail/mail.component.ts + 182 + + Error saving account. + + + Confirm delete mail account + + src/app/components/manage/mail/mail.component.ts + 190 + + Confirm delete mail account + + + This operation will permanently delete this mail account. + + src/app/components/manage/mail/mail.component.ts + 191 + + This operation will permanently delete this mail account. + + + Deleted mail account "" + + src/app/components/manage/mail/mail.component.ts + 201 + + Deleted mail account "" + + + Error deleting mail account "". + + src/app/components/manage/mail/mail.component.ts + 212 + + Error deleting mail account "". + + + Processing mail account "" + + src/app/components/manage/mail/mail.component.ts + 224 + + Processing mail account "" + + + Error processing mail account "" + + src/app/components/manage/mail/mail.component.ts + 229 + + Error processing mail account "" + + + Saved rule "". + + src/app/components/manage/mail/mail.component.ts + 247 + + Saved rule "". + + + Error saving rule. + + src/app/components/manage/mail/mail.component.ts + 258 + + Error saving rule. + + + Rule "" enabled. + + src/app/components/manage/mail/mail.component.ts + 274 + + Rule "" enabled. + + + Rule "" disabled. + + src/app/components/manage/mail/mail.component.ts + 275 + + Rule "" disabled. + + + Error toggling rule "". + + src/app/components/manage/mail/mail.component.ts + 280 + + Error toggling rule "". + + + Confirm delete mail rule + + src/app/components/manage/mail/mail.component.ts + 291 + + Confirm delete mail rule + + + This operation will permanently delete this mail rule. + + src/app/components/manage/mail/mail.component.ts + 292 + + This operation will permanently delete this mail rule. + + + Deleted mail rule "" + + src/app/components/manage/mail/mail.component.ts + 302 + + Deleted mail rule "" + + + Error deleting mail rule "". + + src/app/components/manage/mail/mail.component.ts + 313 + + Error deleting mail rule "". + + + Permissions updated + + src/app/components/manage/mail/mail.component.ts + 337 + + Permissions updated + + + Error updating permissions + + src/app/components/manage/mail/mail.component.ts + 342 + + + src/app/components/manage/management-list/management-list.component.ts + 349 + + Error updating permissions + + + Processed Mail for + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 2 + + Processed Mail for + + + No processed email messages found. + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 20 + + No processed email messages found. + + + Received + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 33 + + Received + + + Processed + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html + 34 + + Processed + + + Processed mail(s) deleted + + src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts + 72 + + Processed mail(s) deleted + + + Filter by: + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + + src/app/components/manage/management-list/management-list.component.html + 20 + + Filter by: + + + Matching + + src/app/components/manage/management-list/management-list.component.html + 39 + + + src/app/components/manage/management-list/management-list.component.html + 39 + + + src/app/components/manage/management-list/management-list.component.html + 39 + + + src/app/components/manage/management-list/management-list.component.html + 39 + + Matching + + + Document count + + src/app/components/manage/management-list/management-list.component.html + 40 + + + src/app/components/manage/management-list/management-list.component.html + 40 + + + src/app/components/manage/management-list/management-list.component.html + 40 + + + src/app/components/manage/management-list/management-list.component.html + 40 + + Document count + + + {VAR_PLURAL, plural, =1 {One } other { total }} + + src/app/components/manage/management-list/management-list.component.html + 67 + + + src/app/components/manage/management-list/management-list.component.html + 67 + + + src/app/components/manage/management-list/management-list.component.html + 67 + + + src/app/components/manage/management-list/management-list.component.html + 67 + + {VAR_PLURAL, plural, =1 {One } other { total }} + + + Automatic + + src/app/components/manage/management-list/management-list.component.ts + 118 + + + src/app/data/matching-model.ts + 15 + + Automatic + + + Successfully created . + + src/app/components/manage/management-list/management-list.component.ts + 196 + + Successfully created . + + + Error occurred while creating . + + src/app/components/manage/management-list/management-list.component.ts + 201 + + Error occurred while creating . + + + Successfully updated "". + + src/app/components/manage/management-list/management-list.component.ts + 216 + + Successfully updated "". + + + Error occurred while saving . + + src/app/components/manage/management-list/management-list.component.ts + 221 + + Error occurred while saving . + + + Associated documents will not be deleted. + + src/app/components/manage/management-list/management-list.component.ts + 241 + + Associated documents will not be deleted. + + + Error while deleting element + + src/app/components/manage/management-list/management-list.component.ts + 257 + + Error while deleting element + + + Permissions updated successfully + + src/app/components/manage/management-list/management-list.component.ts + 342 + + Permissions updated successfully + + + This operation will permanently delete all objects. + + src/app/components/manage/management-list/management-list.component.ts + 363 + + This operation will permanently delete all objects. + + + Objects deleted successfully + + src/app/components/manage/management-list/management-list.component.ts + 377 + + Objects deleted successfully + + + Error deleting objects + + src/app/components/manage/management-list/management-list.component.ts + 383 + + Error deleting objects + + + Customize the views of your documents. + + src/app/components/manage/saved-views/saved-views.component.html + 4 + + Customize the views of your documents. + + + Documents page size + + src/app/components/manage/saved-views/saved-views.component.html + 41 + + Documents page size + + + Display as + + src/app/components/manage/saved-views/saved-views.component.html + 44 + + Display as + + + Table + + src/app/components/manage/saved-views/saved-views.component.html + 46 + + Table + + + Small Cards + + src/app/components/manage/saved-views/saved-views.component.html + 47 + + Small Cards + + + Large Cards + + src/app/components/manage/saved-views/saved-views.component.html + 48 + + Large Cards + + + No saved views defined. + + src/app/components/manage/saved-views/saved-views.component.html + 61 + + No saved views defined. + + + Saved view "" deleted. + + src/app/components/manage/saved-views/saved-views.component.ts + 133 + + Saved view "" deleted. + + + Views saved successfully. + + src/app/components/manage/saved-views/saved-views.component.ts + 158 + + Views saved successfully. + + + Error while saving views. + + src/app/components/manage/saved-views/saved-views.component.ts + 163 + + Error while saving views. + + + storage path + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 45 + + storage path + + + storage paths + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 46 + + storage paths + + + Do you really want to delete the storage path ""? + + src/app/components/manage/storage-path-list/storage-path-list.component.ts + 62 + + Do you really want to delete the storage path ""? + + + tag + + src/app/components/manage/tag-list/tag-list.component.ts + 45 + + tag + + + tags + + src/app/components/manage/tag-list/tag-list.component.ts + 46 + + tags + + + Do you really want to delete the tag ""? + + src/app/components/manage/tag-list/tag-list.component.ts + 61 + + Do you really want to delete the tag ""? + + + Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow. + + src/app/components/manage/workflows/workflows.component.html + 4 + + Use workflows to customize the behavior of Paperless-ngx when events 'trigger' a workflow. + + + Add Workflow + + src/app/components/manage/workflows/workflows.component.html + 9 + + Add Workflow + + + No workflows defined. + + src/app/components/manage/workflows/workflows.component.html + 80 + + No workflows defined. + + + Saved workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 90 + + Saved workflow "". + + + Error saving workflow. + + src/app/components/manage/workflows/workflows.component.ts + 98 + + Error saving workflow. + + + Confirm delete workflow + + src/app/components/manage/workflows/workflows.component.ts + 131 + + Confirm delete workflow + + + This operation will permanently delete this workflow. + + src/app/components/manage/workflows/workflows.component.ts + 132 + + This operation will permanently delete this workflow. + + + Deleted workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 142 + + Deleted workflow "". + + + Error deleting workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 149 + + Error deleting workflow "". + + + Enabled workflow "" + + src/app/components/manage/workflows/workflows.component.ts + 162 + + Enabled workflow "" + + + Disabled workflow "" + + src/app/components/manage/workflows/workflows.component.ts + 163 + + Disabled workflow "" + + + Error toggling workflow "". + + src/app/components/manage/workflows/workflows.component.ts + 170 + + Error toggling workflow "". + + + Not Found + + src/app/components/not-found/not-found.component.html + 6 + + Not Found + + + Go to Dashboard + + src/app/components/not-found/not-found.component.html + 9 + + Go to Dashboard + + + Equal to + + src/app/data/custom-field-query.ts + 24 + + Equal to + + + In + + src/app/data/custom-field-query.ts + 25 + + In + + + Is null + + src/app/data/custom-field-query.ts + 26 + + Is null + + + Exists + + src/app/data/custom-field-query.ts + 27 + + Exists + + + Contains + + src/app/data/custom-field-query.ts + 28 + + Contains + + + Contains (case-insensitive) + + src/app/data/custom-field-query.ts + 29 + + Contains (case-insensitive) + + + Greater than + + src/app/data/custom-field-query.ts + 30 + + Greater than + + + Greater than or equal to + + src/app/data/custom-field-query.ts + 31 + + Greater than or equal to + + + Less than + + src/app/data/custom-field-query.ts + 32 + + Less than + + + Less than or equal to + + src/app/data/custom-field-query.ts + 33 + + Less than or equal to + + + Range + + src/app/data/custom-field-query.ts + 34 + + Range + + + Boolean + + src/app/data/custom-field.ts + 19 + + Boolean + + + Date + + src/app/data/custom-field.ts + 23 + + Date + + + Integer + + src/app/data/custom-field.ts + 27 + + Integer + + + Number + + src/app/data/custom-field.ts + 31 + + Number + + + Monetary + + src/app/data/custom-field.ts + 35 + + Monetary + + + Text + + src/app/data/custom-field.ts + 39 + + Text + + + Url + + src/app/data/custom-field.ts + 43 + + Url + + + Document Link + + src/app/data/custom-field.ts + 47 + + Document Link + + + Long Text + + src/app/data/custom-field.ts + 55 + + Long Text + + + Search score + + src/app/data/document.ts + 103 + + Score is a value returned by the full text search engine and specifies how well a result matches the given query + Search score + + + Auto: Learn matching automatically + + src/app/data/matching-model.ts + 16 + + Auto: Learn matching automatically + + + Any word + + src/app/data/matching-model.ts + 20 + + Any word + + + Any: Document contains any of these words (space separated) + + src/app/data/matching-model.ts + 21 + + Any: Document contains any of these words (space separated) + + + All words + + src/app/data/matching-model.ts + 25 + + All words + + + All: Document contains all of these words (space separated) + + src/app/data/matching-model.ts + 26 + + All: Document contains all of these words (space separated) + + + Exact match + + src/app/data/matching-model.ts + 30 + + Exact match + + + Exact: Document contains this string + + src/app/data/matching-model.ts + 31 + + Exact: Document contains this string + + + Regular expression + + src/app/data/matching-model.ts + 35 + + Regular expression + + + Regular expression: Document matches this regular expression + + src/app/data/matching-model.ts + 36 + + Regular expression: Document matches this regular expression + + + Fuzzy word + + src/app/data/matching-model.ts + 40 + + Fuzzy word + + + Fuzzy: Document contains a word similar to this word + + src/app/data/matching-model.ts + 41 + + Fuzzy: Document contains a word similar to this word + + + None: Disable matching + + src/app/data/matching-model.ts + 46 + + None: Disable matching + + + General Settings + + src/app/data/paperless-config.ts + 50 + + General Settings + + + OCR Settings + + src/app/data/paperless-config.ts + 51 + + OCR Settings + + + Barcode Settings + + src/app/data/paperless-config.ts + 52 + + Barcode Settings + + + Output Type + + src/app/data/paperless-config.ts + 76 + + Output Type + + + Language + + src/app/data/paperless-config.ts + 84 + + Language + + + Mode + + src/app/data/paperless-config.ts + 98 + + Mode + + + Skip Archive File + + src/app/data/paperless-config.ts + 106 + + Skip Archive File + + + Image DPI + + src/app/data/paperless-config.ts + 114 + + Image DPI + + + Clean + + src/app/data/paperless-config.ts + 121 + + Clean + + + Deskew + + src/app/data/paperless-config.ts + 129 + + Deskew + + + Rotate Pages + + src/app/data/paperless-config.ts + 136 + + Rotate Pages + + + Rotate Pages Threshold + + src/app/data/paperless-config.ts + 143 + + Rotate Pages Threshold + + + Max Image Pixels + + src/app/data/paperless-config.ts + 150 + + Max Image Pixels + + + Color Conversion Strategy + + src/app/data/paperless-config.ts + 157 + + Color Conversion Strategy + + + OCR Arguments + + src/app/data/paperless-config.ts + 165 + + OCR Arguments + + + Application Logo + + src/app/data/paperless-config.ts + 172 + + Application Logo + + + Application Title + + src/app/data/paperless-config.ts + 179 + + Application Title + + + Enable Barcodes + + src/app/data/paperless-config.ts + 186 + + Enable Barcodes + + + Enable TIFF Support + + src/app/data/paperless-config.ts + 193 + + Enable TIFF Support + + + Barcode String + + src/app/data/paperless-config.ts + 200 + + Barcode String + + + Retain Split Pages + + src/app/data/paperless-config.ts + 207 + + Retain Split Pages + + + Enable ASN + + src/app/data/paperless-config.ts + 214 + + Enable ASN + + + ASN Prefix + + src/app/data/paperless-config.ts + 221 + + ASN Prefix + + + Upscale + + src/app/data/paperless-config.ts + 228 + + Upscale + + + DPI + + src/app/data/paperless-config.ts + 235 + + DPI + + + Max Pages + + src/app/data/paperless-config.ts + 242 + + Max Pages + + + Enable Tag Detection + + src/app/data/paperless-config.ts + 249 + + Enable Tag Detection + + + Tag Mapping + + src/app/data/paperless-config.ts + 256 + + Tag Mapping + + + Warning: You have unsaved changes to your document(s). + + src/app/guards/dirty-doc.guard.ts + 16 + + Warning: You have unsaved changes to your document(s). + + + Unsaved Changes + + src/app/guards/dirty-form.guard.ts + 15 + + + src/app/guards/dirty-saved-view.guard.ts + 27 + + + src/app/services/open-documents.service.ts + 122 + + + src/app/services/open-documents.service.ts + 149 + + Unsaved Changes + + + You have unsaved changes. + + src/app/guards/dirty-form.guard.ts + 16 + + + src/app/services/open-documents.service.ts + 150 + + You have unsaved changes. + + + Are you sure you want to leave? + + src/app/guards/dirty-form.guard.ts + 17 + + Are you sure you want to leave? + + + Leave page + + src/app/guards/dirty-form.guard.ts + 19 + + Leave page + + + You have unsaved changes to the saved view + + src/app/guards/dirty-saved-view.guard.ts + 29 + + You have unsaved changes to the saved view + + + Are you sure you want to close this saved view? + + src/app/guards/dirty-saved-view.guard.ts + 33 + + Are you sure you want to close this saved view? + + + Save and close + + src/app/guards/dirty-saved-view.guard.ts + 37 + + Save and close + + + You don't have permissions to do that + + src/app/guards/permissions.guard.ts + 34 + + You don't have permissions to do that + + + Last year + + src/app/pipes/custom-date.pipe.ts + 14 + + Last year + + + %s years ago + + src/app/pipes/custom-date.pipe.ts + 15 + + %s years ago + + + Last month + + src/app/pipes/custom-date.pipe.ts + 19 + + Last month + + + %s months ago + + src/app/pipes/custom-date.pipe.ts + 20 + + %s months ago + + + Last week + + src/app/pipes/custom-date.pipe.ts + 24 + + Last week + + + %s weeks ago + + src/app/pipes/custom-date.pipe.ts + 25 + + %s weeks ago + + + %s days ago + + src/app/pipes/custom-date.pipe.ts + 30 + + %s days ago + + + %s hour ago + + src/app/pipes/custom-date.pipe.ts + 34 + + %s hour ago + + + %s hours ago + + src/app/pipes/custom-date.pipe.ts + 35 + + %s hours ago + + + %s minute ago + + src/app/pipes/custom-date.pipe.ts + 39 + + %s minute ago + + + %s minutes ago + + src/app/pipes/custom-date.pipe.ts + 40 + + %s minutes ago + + + Just now + + src/app/pipes/custom-date.pipe.ts + 73 + + Just now + + + (no title) + + src/app/pipes/document-title.pipe.ts + 11 + + (no title) + + + You have unsaved changes to the document + + src/app/services/open-documents.service.ts + 124 + + You have unsaved changes to the document + + + Are you sure you want to close this document? + + src/app/services/open-documents.service.ts + 128 + + Are you sure you want to close this document? + + + Are you sure you want to close all documents? + + src/app/services/open-documents.service.ts + 151 + + Are you sure you want to close all documents? + + + Close documents + + src/app/services/open-documents.service.ts + 153 + + Close documents + + + English (US) + + src/app/services/settings.service.ts + 51 + + English (US) + + + Afrikaans + + src/app/services/settings.service.ts + 57 + + Afrikaans + + + Arabic + + src/app/services/settings.service.ts + 63 + + Arabic + + + Belarusian + + src/app/services/settings.service.ts + 69 + + Belarusian + + + Bulgarian + + src/app/services/settings.service.ts + 75 + + Bulgarian + + + Catalan + + src/app/services/settings.service.ts + 81 + + Catalan + + + Czech + + src/app/services/settings.service.ts + 87 + + Czech + + + Danish + + src/app/services/settings.service.ts + 93 + + Danish + + + German + + src/app/services/settings.service.ts + 99 + + German + + + Greek + + src/app/services/settings.service.ts + 105 + + Greek + + + English (GB) + + src/app/services/settings.service.ts + 111 + + English (GB) + + + Spanish + + src/app/services/settings.service.ts + 117 + + Spanish + + + Finnish + + src/app/services/settings.service.ts + 123 + + Finnish + + + French + + src/app/services/settings.service.ts + 129 + + French + + + Hungarian + + src/app/services/settings.service.ts + 135 + + Hungarian + + + Italian + + src/app/services/settings.service.ts + 141 + + Italian + + + Japanese + + src/app/services/settings.service.ts + 147 + + Japanese + + + Korean + + src/app/services/settings.service.ts + 153 + + Korean + + + Luxembourgish + + src/app/services/settings.service.ts + 159 + + Luxembourgish + + + Dutch + + src/app/services/settings.service.ts + 165 + + Dutch + + + Norwegian + + src/app/services/settings.service.ts + 171 + + Norwegian + + + Persian + + src/app/services/settings.service.ts + 177 + + Persian + + + Polish + + src/app/services/settings.service.ts + 183 + + Polish + + + Portuguese (Brazil) + + src/app/services/settings.service.ts + 189 + + Portuguese (Brazil) + + + Portuguese + + src/app/services/settings.service.ts + 195 + + Portuguese + + + Romanian + + src/app/services/settings.service.ts + 201 + + Romanian + + + Russian + + src/app/services/settings.service.ts + 207 + + Russian + + + Slovak + + src/app/services/settings.service.ts + 213 + + Slovak + + + Slovenian + + src/app/services/settings.service.ts + 219 + + Slovenian + + + Serbian + + src/app/services/settings.service.ts + 225 + + Serbian + + + Swedish + + src/app/services/settings.service.ts + 231 + + Swedish + + + Turkish + + src/app/services/settings.service.ts + 237 + + Turkish + + + Ukrainian + + src/app/services/settings.service.ts + 243 + + Ukrainian + + + Vietnamese + + src/app/services/settings.service.ts + 249 + + Vietnamese + + + Chinese Simplified + + src/app/services/settings.service.ts + 255 + + Chinese Simplified + + + Chinese Traditional + + src/app/services/settings.service.ts + 261 + + Chinese Traditional + + + ISO 8601 + + src/app/services/settings.service.ts + 269 + + ISO 8601 + + + Successfully completed one-time migratration of settings to the database! + + src/app/services/settings.service.ts + 603 + + Successfully completed one-time migratration of settings to the database! + + + Unable to migrate settings to the database, please try saving manually. + + src/app/services/settings.service.ts + 604 + + Unable to migrate settings to the database, please try saving manually. + + + You can restart the tour from the settings page. + + src/app/services/settings.service.ts + 677 + + You can restart the tour from the settings page. + + + Connecting... + + src/app/services/upload-documents.service.ts + 25 + + Connecting... + + + Uploading... + + src/app/services/upload-documents.service.ts + 37 + + Uploading... + + + Upload complete, waiting... + + src/app/services/upload-documents.service.ts + 40 + + Upload complete, waiting... + + + HTTP error: + + src/app/services/upload-documents.service.ts + 53 + + HTTP error: + + + Document already exists. + + src/app/services/websocket-status.service.ts + 24 + + Document already exists. + + + Document already exists. Note: existing document is in the trash. + + src/app/services/websocket-status.service.ts + 25 + + Document already exists. Note: existing document is in the trash. + + + Document with ASN already exists. + + src/app/services/websocket-status.service.ts + 26 + + Document with ASN already exists. + + + Document with ASN already exists. Note: existing document is in the trash. + + src/app/services/websocket-status.service.ts + 27 + + Document with ASN already exists. Note: existing document is in the trash. + + + File not found. + + src/app/services/websocket-status.service.ts + 28 + + File not found. + + + Pre-consume script does not exist. + + src/app/services/websocket-status.service.ts + 29 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Pre-consume script does not exist. + + + Error while executing pre-consume script. + + src/app/services/websocket-status.service.ts + 30 + + Pre-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing pre-consume script. + + + Post-consume script does not exist. + + src/app/services/websocket-status.service.ts + 31 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Post-consume script does not exist. + + + Error while executing post-consume script. + + src/app/services/websocket-status.service.ts + 32 + + Post-Consume is a term that appears like that in the documentation as well and does not need a specific translation + Error while executing post-consume script. + + + Received new file. + + src/app/services/websocket-status.service.ts + 33 + + Received new file. + + + File type not supported. + + src/app/services/websocket-status.service.ts + 34 + + File type not supported. + + + Processing document... + + src/app/services/websocket-status.service.ts + 35 + + Processing document... + + + Generating thumbnail... + + src/app/services/websocket-status.service.ts + 36 + + Generating thumbnail... + + + Retrieving date from document... + + src/app/services/websocket-status.service.ts + 37 + + Retrieving date from document... + + + Saving document... + + src/app/services/websocket-status.service.ts + 38 + + Saving document... + + + Finished. + + src/app/services/websocket-status.service.ts + 39 + + Finished. + + + + diff --git a/src-ui/src/locale/messages.ms_MY.xlf b/src-ui/src/locale/messages.ms_MY.xlf index 64d44650a..753b335bd 100644 --- a/src-ui/src/locale/messages.ms_MY.xlf +++ b/src-ui/src/locale/messages.ms_MY.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Settings @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error retrieving users @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error retrieving groups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Confirm delete @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Users & Groups @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Saved user "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Error saving user. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirm delete user account @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 This operation will permanently delete this user account. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Saved group "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Error saving group. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirm delete user group @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 This operation will permanently delete this user group. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Saved views @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documents @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Close all @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Manage @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is available. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click to view. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 How does this work? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update available @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Case insensitive @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Email @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Include: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Select all + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 8ba415c00..4db95e43b 100644 --- a/src-ui/src/locale/messages.nl_NL.xlf +++ b/src-ui/src/locale/messages.nl_NL.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Instellingen @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logbestanden @@ -742,11 +742,35 @@ Bekijk de logbestanden voor de applicatie en voor het ophalen van e-mails. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Toon + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Fout bij ophalen gebruikers @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Fout bij ophalen groepen @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Er is een fout opgetreden bij het opslaan van de instellingen. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Bestandstaken @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Prullenbak @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Bevestig het verwijderen @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Gebruikers & groepen @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Wachtwoord is gewijzigd, je wordt zo uitgelogd. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Gebruiker "" opgeslagen. @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Fout bij opslaan gebruiker. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Bevestig verwijderen gebruikersaccount @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Deze actie zal dit gebruikersaccount permanent verwijderen. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Gebruiker "" verwijderd @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Fout bij verwijderen gebruiker "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Groep "" opgeslagen. @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Fout bij opslaan groep. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Bevestig verwijderen gebruikersgroep @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Deze actie zal deze gebruikersgroep permanent verwijderen. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Groep "" verwijderd @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Fout bij verwijderen groep "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Handleiding @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Opgeslagen weergaven @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Open documenten @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Alles sluiten @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Beheren @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Beheer @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuratie @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 is beschikbaar. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik om te bekijken. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan automatisch controleren op updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hoe werkt dit? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Update beschikbaar @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Zijbalkweergaven bijgewerkt @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Fout tijdens bijwerken van zijbalkweergaven @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Er is een fout opgetreden tijdens het opslaan van de instellingen voor updatecontroles. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Waar @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Onwaar @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Zoek documenten... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Niet @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Zoekopdracht toevoegen @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Expressie toevoegen @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Niet hoofdlettergevoelig @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Documenttype toewijzen @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Correspondent toewijzen @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-mailadres @@ -4954,7 +4978,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 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Bewerk gebruikersaccount @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP uitgeschakeld @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relatief aan @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Aangepast veld @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Herhalend @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Bestandsnaam filteren @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Bronnen filteren @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter op opslaglocatie @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Inhoud matchingsalgoritme @@ -5206,7 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Actietype @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Titel toewijzen @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Labels toewijzen @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Opslaglocatie toewijzen @@ -5286,7 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Eigenaar toewijzen @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Weergaverechten toewijzen @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Bewerkingsrechten toewijzen @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Verwijder labels @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Verwijder correspondenten @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Verwijder documenttypes @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Verwijder opslagpaden @@ -5382,7 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Verwijder eigenaars @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Verwijder rechten @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Bekijk rechten @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Bewerk rechten @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 E-mail onderwerp @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 E-mail tekst @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 E-mail ontvangers @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Voeg document toe @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook URL @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook parameters @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profiel succesvol bijgewerkt @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Fout bij opslaan profiel @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Fout bij genereren authenticatie token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Fout bij ontkoppelen van sociaal account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Fout bij ophalen TOTP instellingen @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP succesvol ingeschakeld @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Fout bij inschakelen TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP is succesvol uitgeschakeld @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Fout bij uitschakelen TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Printen mislukt. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Fout bij laden van document voor printen. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Fout bij het laden van tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Inclusief: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Gearchiveerde bestanden @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Originele bestanden @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Gebruik geformatteerde bestandsnaam @@ -8669,6 +8693,14 @@ Alles selecteren + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Geen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Toon - Sort @@ -9765,7 +9785,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Fout bij bijwerken rechten @@ -9905,7 +9925,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Succesvol aangemaakt. @@ -9913,7 +9933,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Fout bij maken . @@ -9921,7 +9941,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Succesvol bijgewerkt "". @@ -9929,7 +9949,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Fout bij opslaan . @@ -9937,7 +9957,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Bijbehorende documenten worden niet verwijderd. @@ -9945,7 +9965,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Fout tijdens het verwijderen van element @@ -9953,7 +9973,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Rechten succesvol bijgewerkt @@ -9961,7 +9981,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Deze bewerking zal alle objecten permanent verwijderen. @@ -9969,7 +9989,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objecten succesvol verwijderd @@ -9977,7 +9997,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 741c89f80..71152f5f9 100644 --- a/src-ui/src/locale/messages.no_NO.xlf +++ b/src-ui/src/locale/messages.no_NO.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Innstillinger @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logger @@ -742,11 +742,35 @@ Se gjennom loggfilene for applikasjonen og for sjekk av e-post. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Vis + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Feil ved innhenting av brukere @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Feil ved innhenting av grupper @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Det oppstod en feil under lagring av innstillingene. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Fil oppgaver @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papirkurv @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Bekreft sletting @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Brukere & Grupper @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Passordet har blitt endret, du vil bli logget ut øyeblikkelig. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Lagret bruker "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Feil ved lagring av bruker. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Bekreft sletting av brukerkonto @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Denne operasjonen vil permanent slette denne brukerkontoen. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Lagret gruppe "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Feil ved lagring av gruppe. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Bekreft sletting av brukergruppe @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Denne operasjonen vil permanent slette denne brukergruppen. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentasjon @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Lagrede visninger @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Åpne dokumenter @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Lukk alle @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Behandle @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-post @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrasjon @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurasjon @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 er tilgjengelig. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikk for å se. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan automatisk sjekke etter oppdateringer @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hvordan fungerer dette? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Oppdatering er tilgjengelig @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidepanel visning oppdatert @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Feil ved oppdatering av sidepanelet @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Det oppstod en feil under lagring av innstillinger for oppdatering. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,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 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Tilordne dokumenttype @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Tildel korrespondent @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-post @@ -4954,7 +4978,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 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Rediger brukerkonto @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Tildel lagringssti @@ -5286,7 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Tilordne eier @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Tilordne visningstillatelser @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Tilordne redigeringstillatelser @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Fjern etiketter @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Fjern korrespondenter @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Fjern dokumenttyper @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Fjern lagringsstier @@ -5382,7 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Fjern eiere @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Fjern tillatelser @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Vis rettigheter @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Endre rettigheter @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Inkluder: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Velg alle + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ingen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Vis - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 d6917e5e0..ee670d97c 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 @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ustawienia @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Dziennik @@ -742,11 +742,35 @@ Przeglądaj pliki logów dla aplikacji i dla procesu sprawdzania wiadomości e-mail. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Pokaż + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + linie + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1128,7 +1152,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 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Błąd przy pobieraniu użytkowników @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Błąd przy pobieraniu grup @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Wystąpił błąd podczas zapisywania ustawień. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Operacje na plikach @@ -2124,7 +2148,7 @@ src/app/components/admin/tasks/tasks.component.ts 161 - Error dismissing tasks + Błąd zakończenia zadań Error dismissing task @@ -2132,7 +2156,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Błąd zakończenia zadania queued @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Kosz @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Potwierdź usunięcie @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Użytkownicy i Grupy @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Hasło zostało zmienione, zostaniesz natychmiast wylogowany. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Zapisano użytkownika "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Błąd zapisywania użytkownika. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Potwierdź usunięcie konta @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Ta operacja trwale usunie konto tego użytkownika. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Usunięto użytkownika "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Błąd podczas usuwania użytkownika "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Zapisano grupę "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Błąd zapisywania grupy. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Potwierdź usunięcie grupy użytkowników @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Ta operacja trwale usunie tę grupę użytkowników. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Usunięto grupę "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Błąd podczas usuwania grupy "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacja @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Zapisane widoki @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otwarte dokumenty @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zamknij wszystkie @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Zarządzaj @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Poczta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administracja @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguracja @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 jest dostępny. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Kliknij, aby zobaczyć. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx może automatycznie sprawdzać dostępność aktualizacji @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Jak to działa? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aktualizacja jest dostępna @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Zaktualizowano widoki bocznego panelu @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Błąd podczas aktualizacji widoków bocznego panelu @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Wystąpił błąd podczas zapisywania ustawień sprawdzania aktualizacyj. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Prawda @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Fałsz @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Wyszukaj dokumenty... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nie @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Dodaj zapytanie @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Dodaj wyrażenie @@ -3978,7 +4002,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 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Przypisz typ dokumentu @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Przypisz korespondenta @@ -4482,7 +4506,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 +4816,7 @@ src/app/components/common/edit-dialog/tag-edit-dialog/tag-edit-dialog.component.html 15 - Parent + Nadrzędny/a Inbox tag @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Adres e-mail @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp wyłączony @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Typ wyzwalacza @@ -5054,7 +5078,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 +5086,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 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Względem @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Pole niestandardowe @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Cykliczne @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,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 +5174,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 +5182,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 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtruj ścieżkę @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,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 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Przypisz tytuł @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Przypisz tagi @@ -5278,7 +5302,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 +5310,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 +5318,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 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Usuń tagi @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Usuń korespondentów @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,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 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Usuń uprawnienia @@ -5406,7 +5430,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 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Uprawnienia do edycji @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Temat e-maila @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Treść e-maila @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Odbiorcy e-maila @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Dołącz dokument @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Adres URL webhooka @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parametry webhooka @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Treść webhooka @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Nagłówki webhooka @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Dołącz dokument @@ -5620,7 +5644,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 +5652,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 +5660,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 +5676,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 +5692,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 +5700,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 +5708,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 +5716,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 +5740,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 +5792,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 +5808,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 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Otwórz filtr @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6162,7 +6186,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 9 - Select all pages + Zaznacz wszystkie strony Deselect all pages @@ -6170,7 +6194,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 +6202,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 +6210,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 +6218,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 23 - Delete selected pages + Usuń wybrane strony Rotate page counter-clockwise @@ -6202,7 +6226,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 +6234,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 +6242,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 41 - Delete page + Usuń stronę Add / remove document split here @@ -6226,7 +6250,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 +6258,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 70 - Split here + Podziel tutaj Create new document(s) @@ -6242,7 +6266,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 +6274,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 87 - Update existing document + Zaktualizuj istniejący dokument Copy metadata @@ -6258,7 +6282,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 94 - Copy metadata + Skopiuj metadane Delete original @@ -6266,7 +6290,7 @@ src/app/components/common/pdf-editor/pdf-editor.component.html 98 - Delete original + Usuń oryginał Merge with existing permissions @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil został pomyślnie zaktualizowany @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Błąd podczas zapisywania profilu @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Błąd generowania tokenu autoryzacyjnego @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Błąd rozłączania konta społecznościowego @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Błąd pobierania ustawień TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP aktywowany pomyślnie @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Błąd aktywacji TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP dezaktywowany pomyślnie @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Błąd dezaktywacji TOTP @@ -7030,7 +7054,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 257 - WebSocket Connection + Połączenie WebSocket OK @@ -7038,7 +7062,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 261 - OK + OK Copy Raw Error @@ -7376,7 +7400,7 @@ src/app/components/document-detail/document-detail.component.html 7,8 - of + z - @@ -7420,7 +7444,7 @@ src/app/components/document-detail/document-detail.component.html 58 - Print + Drukuj More like this @@ -7444,7 +7468,7 @@ src/app/components/document-detail/document-detail.component.ts 1392 - PDF Editor + Edytor dokumentu PDF Send @@ -7992,7 +8016,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,33 +8024,33 @@ src/app/components/document-detail/document-detail.component.ts 1423 - Error executing PDF edit operation + Błąd podczas edycji dokumentu PDF Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 - Print failed. + Błąd drukowania. Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 - Error loading document for printing. + Błąd ładowania dokumentu do wydruku. An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Wystąpił błąd podczas ładowania pliku TIFF: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Zawrzyj: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Zarchiwizowane pliki @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Oryginalne pliki @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Użyj sformatowanej nazwy pliku @@ -8669,6 +8693,14 @@ Zaznacz wszystko + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Wybierz: + None @@ -8685,18 +8717,6 @@ Brak - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Pokaż - Sort @@ -9571,7 +9591,7 @@ src/app/components/manage/mail/mail.component.html 143 - View Processed Mail + Zobacz Przetworzoną pocztę No mail rules defined. @@ -9765,7 +9785,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Błąd aktualizacji uprawnień @@ -9775,7 +9795,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 +9803,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 +9811,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 33 - Received + Odebrano Processed @@ -9799,7 +9819,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 34 - Processed + Przetworzono Processed mail(s) deleted @@ -9807,7 +9827,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: @@ -9905,7 +9925,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Pomyślnie utworzono . @@ -9913,7 +9933,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Wystąpił błąd podczas tworzenia . @@ -9921,7 +9941,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Pomyślnie zaktualizowano "". @@ -9929,7 +9949,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Wystąpił błąd podczas zapisywania . @@ -9937,7 +9957,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Powiązane dokumenty nie zostaną usunięte. @@ -9945,7 +9965,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Błąd podczas usuwania elementu @@ -9953,7 +9973,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Uprawnienia zostały pomyślnie zaktualizowane @@ -9961,7 +9981,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Ta operacja spowoduje trwałe usunięcie wszystkich obiektów. @@ -9969,7 +9989,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Obiekty usunięte pomyślnie @@ -9977,7 +9997,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 Błąd usuwania obiektów @@ -10379,7 +10399,7 @@ src/app/data/custom-field.ts 55 - Long Text + Pełny tekst Search score @@ -11204,7 +11224,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 8cf0ba87d..db5520eff 100644 --- a/src-ui/src/locale/messages.pt_BR.xlf +++ b/src-ui/src/locale/messages.pt_BR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Configurações @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ Revise os arquivos de log para o aplicativo e para verificação de e-mail. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Mostrar + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Erro ao recuperar usuários @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Erro ao recuperar grupos @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ocorreu um erro ao salvar as configurações. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tarefas de Arquivo @@ -2124,7 +2148,7 @@ src/app/components/admin/tasks/tasks.component.ts 161 - Error dismissing tasks + Erro ao ignorar tarefas Error dismissing task @@ -2132,7 +2156,7 @@ src/app/components/admin/tasks/tasks.component.ts 170 - Error dismissing task + Erro ao ignorar tarefa queued @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Lixeira @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Confirmar exclusão @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Usuários & Grupos @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 A senha foi alterada, você será deslogado momentaneamente. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Usuário salvo "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Erro ao salvar o usuário. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirmar exclusão de conta de usuário @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Esta operação excluirá permanentemente esta conta de usuário. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Usuário excluído "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Erro ao excluir o usuário "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Grupo salvo "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Erro ao salvar grupo. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirmar exclusão de grupo de usuário @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Esta operação excluirá este grupo de usuários permanentemente. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Grupo excluído "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Erro ao excluir o grupo "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentação @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Visualizações @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Abrir documentos @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Fechar todos @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gerenciar @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administração @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Personalização @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 está disponível. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Clique para visualizar. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx pode verificar atualizações automaticamente @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Como isto funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Atualização disponível @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Visualizações da barra lateral atualizadas @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Erro ao atualizar visualizações da barra lateral @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Ocorreu um erro ao salvar as verificações de atualizações. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Verdadeiro @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Procura documentos... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Não @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Adicionar consulta @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Adicionar expressão @@ -3978,7 +4002,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 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Atribuir tipo de documento @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Atribuir correspondente @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-mail @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp desativado @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Tipo de acionador @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Dias de deslocamento @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relativo a @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Campo personalizado @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recorrente @@ -5110,7 +5134,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Gatilho é recorrente. @@ -5118,7 +5142,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 +5150,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 +5158,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 +5166,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 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtro de fontes @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtro de caminho @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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,39 +5238,39 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 - Advanced Filters + Filtros Avançados Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 - Add filter + Adicionar filtro 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. + Nenhum filtro avançado de fluxo de trabalho definido. 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. + Conclua a configuração da consulta de campo personalizado. Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tipo de ação @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Atribuir título @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Atribuir etiquetas @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Atribuir proprietário @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remover etiquetas @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remover correspondentes @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remover proprietários @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remover permissões @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Exibir Permissões @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Editar permissões @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Assunto do email @@ -5430,7 +5454,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 +5462,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 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Anexar documento @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Url do webhook @@ -5462,7 +5486,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 +5494,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 +5502,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 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Corpo do webhook @@ -5494,7 +5518,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 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Incluir documentos @@ -5620,7 +5644,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 203 - Has any of these tags + Possui alguma destas etiquetas Has all of these tags @@ -5628,7 +5652,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 210 - Has all of these tags + Possui estas etiquetas Does not have these tags @@ -5636,7 +5660,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 217 - Does not have these tags + Não possui estas etiquetas Has correspondent @@ -5652,7 +5676,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 232 - Does not have correspondents + Não possui correspondentes Has document type @@ -5668,7 +5692,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 248 - Does not have document types + Não possui tipos de documento Has storage path @@ -5684,7 +5708,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 264 - Does not have storage paths + Não possui caminhos de armazenamento Matches custom field query @@ -5692,7 +5716,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.ts 272 - Matches custom field query + Corresponde à consulta de campo personalizado Create new workflow @@ -5716,7 +5740,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 {Enviar documento por e-mail} other {Email Documentos}} Email address(es) @@ -5768,7 +5792,8 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.html 37 - Some email servers may reject messages with large attachments. + Alguns servidores de e-mail podem rejeitar mensagens com anexos grandes. +Erro ao enviar documentos por e-mail Email sent @@ -5784,7 +5809,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.ts 69 - Error emailing documents + Erro ao enviar documentos por e-mail Error emailing document @@ -5858,7 +5883,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 +5892,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Abrir filtro @@ -5947,7 +5972,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6109,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6645,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Perfil atualizado com sucesso @@ -6628,7 +6653,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Erro ao salvar o perfil @@ -6636,7 +6661,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Erro ao gerar token de autenticação @@ -6644,7 +6669,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Erro ao desconectar conta de rede social @@ -6652,7 +6677,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Erro ao obter configurações TOTP @@ -6660,7 +6685,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP ativado com sucesso @@ -6668,11 +6693,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Erro ao ativar TOTP @@ -6680,7 +6705,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP desativado com sucesso @@ -6688,11 +6713,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Erro ao desativar TOTP @@ -8006,7 +8031,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Impressão falhou. @@ -8014,7 +8039,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Erro ao carregar o documento para impressão. @@ -8022,11 +8047,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Ocorreu um erro ao carregar tiff: @@ -8146,7 +8171,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Incluir: @@ -8154,7 +8179,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Arquivos arquivados @@ -8162,7 +8187,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Arquivos originais @@ -8170,7 +8195,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Usar nome do arquivo formatado @@ -8670,6 +8695,14 @@ Selecionar todos + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8719,6 @@ Nenhum - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Mostrar - Sort @@ -9572,7 +9593,7 @@ src/app/components/manage/mail/mail.component.html 143 - View Processed Mail + Ver e-mails processados No mail rules defined. @@ -9766,7 +9787,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 @@ -9776,7 +9797,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 2 - Processed Mail for + E-mails processados para No processed email messages found. @@ -9784,7 +9805,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 20 - No processed email messages found. + Nenhuma mensagem de e-mail processada encontrada. Received @@ -9792,7 +9813,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 33 - Received + Recebido Processed @@ -9800,7 +9821,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.html 34 - Processed + Processado Processed mail(s) deleted @@ -9808,7 +9829,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts 72 - Processed mail(s) deleted + E-mail(s) processado(s) excluído(s) Filter by: @@ -9906,7 +9927,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Criado com sucesso . @@ -9914,7 +9935,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Ocorreu um erro ao criar . @@ -9922,7 +9943,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Atualizado com sucesso "". @@ -9930,7 +9951,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Ocorreu um erro ao salvar . @@ -9938,7 +9959,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Documentos associados não serão excluídos. @@ -9946,7 +9967,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Erro ao excluir elemento @@ -9954,7 +9975,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissões atualizadas com sucesso @@ -9962,7 +9983,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Esta operação irá apagar permanentemente todos os objetos. @@ -9970,7 +9991,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objeto(s) excluído(s) com sucesso. @@ -9978,7 +9999,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 aa2d4ab92..b05bd0fd6 100644 --- a/src-ui/src/locale/messages.pt_PT.xlf +++ b/src-ui/src/locale/messages.pt_PT.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Configurações @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Registos @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Erro ao obter os utilizadores. @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Erro ao obter os grupos. @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ocorreu um erro ao gravar as configurações. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tarefas de Ficheiro @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Reciclagem @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Confirmar eliminação @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utilizadores e Grupos @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 A palavra passe foi alterada, terá a sessão atual terminada daqui a nada. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Utilizador "" gravado. @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Erro ao gravar utilizador. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirmar exclusão da conta de utilizador @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Esta operação irá apagar esta conta de utilizador permanentemente. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Utilizador excluído "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Erro ao excluir utilizador "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Grupo "" guardado. @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Erro ao gravar grupo. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirma excluir grupo de utilizador @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Esta operação irá apagar este grupo de utilizadores permanentemente. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Grupo excluído "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Erro ao excluir grupo "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentação @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Visualizações @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Abrir documentos @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Fechar todos @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Gerir @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Email @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administração @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Customizações @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 está disponível. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Clique para ver. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 O Paperless-ngx pode verificar automaticamente por atualizações @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Como é que isto funciona? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Atualização disponível @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Visualizações da barra lateral atualizadas @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Erro ao atualizar visualizações da barra lateral @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Verdadeiro @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falso @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Não @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Adicionar expressão @@ -3978,7 +4002,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 +4474,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 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Definir correspondente @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Email @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp desativado @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Dias de desfasamento @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 @@ -5190,7 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Atribuir título @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Atribuir etiquetas @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Atribuir responsável @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Incluir: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Selecionar todos + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Nenhum - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Erro ao atualizar permissões @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Criado com sucesso . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Ocorreu um erro ao criar . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Ocorreu um erro ao gravar . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 d3b048b08..302a90854 100644 --- a/src-ui/src/locale/messages.ro_RO.xlf +++ b/src-ui/src/locale/messages.ro_RO.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Setări @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Jurnale @@ -742,11 +742,35 @@ Uitați-vă la fișierele de log-uri pentru aplicație si verificarea email-ului. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Arată + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error retrieving users @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error retrieving groups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 File Tasks @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Confirmă ștergerea @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Utilizatori & Grupuri @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Parola a fost schimbată, vei fi deconectat momentan. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Utilizator salvat "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Eroare la salvarea utilizatorului. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirmă ștergerea contului @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Această operațiune va șterge permanent acest cont. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Saved group "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Error saving group. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirm delete user group @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 This operation will permanently delete this user group. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Documentație @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Vizualizări @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Deschide documente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Închide tot @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Administrează @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrare @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 este disponibilă. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Click pentru a vizualiza. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Sistemul poate verifica automat actualizările @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Cum funcţionează? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Actualizare disponibilă @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Vizualizări bară laterală actualizate @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Eroare la actualizarea vizualizărilor barei laterale @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Ignoră majusculele @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Assign document type @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Assign correspondent @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Poștă electronică @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,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 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtrare surse @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtrare cale @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Include: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Selectează tot + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ None - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Arată - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 6f09435d7..40e49cb17 100644 --- a/src-ui/src/locale/messages.ru_RU.xlf +++ b/src-ui/src/locale/messages.ru_RU.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Настройки @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Логи @@ -742,11 +742,35 @@ Просмотрите файлы журналов для приложения и для проверки электронной почты. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Показать + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Ошибка при загрузке пользователей @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Ошибка при загрузке групп @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Произошла ошибка при сохранении настроек. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Файловые задачи @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Корзина @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Подтвердите удаление @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Пользователи и группы @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Пароль был изменен, повторите вход в учетную запись. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Сохранён пользователь "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Ошибка при сохранении документа. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Подтвердите удаление учетной записи пользователя @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Эта операция окончательно удалит учетную запись пользователя. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Пользователь "" удален @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Ошибка при удалении пользователя "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Сохранена группа "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Ошибка сохранения группы. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Подтвердите удаление группы пользователей @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Эта операция окончательно удалит данную группу пользователей. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Группа "" удалена @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Ошибка при удалении группы "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Документация @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Представления @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Открыть документы @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Закрыть всё @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Управление @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Почта @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Администрирование @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Конфигурация @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 доступно. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Нажмите для просмотра. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx может автоматически проверять наличие обновлений @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Как это работает? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Доступно обновление @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Обновлена боковая панель @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Ошибка при обновлении боковой панели @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Произошла ошибка при сохранении настроек проверки обновлений. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Верно @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Ложное @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Поиск документов... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Не @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Добавить запрос @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Добавить выражение @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Без учёта регистра @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Назначить тип документа @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Назначить корреспондента @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Электронная почта @@ -4954,7 +4978,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Создать новую учетную запись пользователя @@ -4962,7 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Редактировать учетную запись пользователя @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp деактивирован @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Тип триггера @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Дни смещения @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Относительно @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Пользовательское поле @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Повторяющееся @@ -5110,7 +5134,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Триггер повторяется. @@ -5118,7 +5142,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 Повторяющиеся дни интервала @@ -5126,7 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Фильтр имя файла @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Фильтр источников @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Фильтр пути @@ -5174,7 +5198,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 +5206,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Фильтр почтовых правил @@ -5190,7 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Алгоритм подбора содержимого @@ -5206,7 +5230,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Шаблон подбора содержимого @@ -5214,7 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Тип действия @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Присвоить заголовок @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Назначить метки @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Назначить путь хранения @@ -5286,7 +5310,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Назначить пользовательские поля @@ -5294,7 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Назначить владельца @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Назначить права для просмотра @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Назначить права для редактирования @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Удалить теги @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Удалить корреспондентов @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Удалить типы документов @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Удалить пути хранения @@ -5382,7 +5406,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Удалить пользовательские поля @@ -5390,7 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Удалить владельцев @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Удалить разрешения @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Просмотр разрешений @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Изменить разрешения @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Тема письма @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Текст письма @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Получатели письма @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Прикрепить документ @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL вебхука @@ -5462,7 +5486,7 @@ Use parameters for webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 418 + 420 Использовать параметры для тела веб-хука @@ -5470,7 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Параметры вебхука @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Тело веб хука @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 HTTP-заголовки вебхука @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Включать документ @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Открыть фильтр @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Профиль успешно обновлен @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Ошибка при сохранении профиля @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Ошибка создания токена авторизации @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Ошибка при отключении стороннего сервиса @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Ошибка получения настроек TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP успешно активирован @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Ошибка активации TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP успешно деактивирован @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Ошибка деактивации TOTP @@ -7030,7 +7054,7 @@ src/app/components/common/system-status-dialog/system-status-dialog.component.html 257 - WebSocket Connection + Подключение WebSocket OK @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Произошла ошибка при загрузке tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Включить: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Архивные файлы @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Исходные файлы @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Использовать форматированное имя файла @@ -8669,6 +8693,14 @@ Выбрать всё + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ Отсутствует - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Показать - Sort @@ -9765,7 +9785,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Ошибка обновления прав доступа @@ -9807,7 +9827,7 @@ src/app/components/manage/mail/processed-mail-dialog/processed-mail-dialog.component.ts 72 - Processed mail(s) deleted + Обработанная почта удалена Filter by: @@ -9905,7 +9925,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Успешно создано . @@ -9913,7 +9933,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Произошла ошибка во время создания . @@ -9921,7 +9941,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Успешно обновлено: "". @@ -9929,7 +9949,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Произошла ошибка при сохранении . @@ -9937,7 +9957,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Связанные документы не будут удалены. @@ -9945,7 +9965,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Ошибка при удалении элемента @@ -9953,7 +9973,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Права доступа успешно обновлены @@ -9961,7 +9981,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Эта операция окончательно удалит все объекты. @@ -9969,7 +9989,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Объекты успешно удалены @@ -9977,7 +9997,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 Ошибка при удалении объектов diff --git a/src-ui/src/locale/messages.sk_SK.xlf b/src-ui/src/locale/messages.sk_SK.xlf index 79bab05b8..dd85de97a 100644 --- a/src-ui/src/locale/messages.sk_SK.xlf +++ b/src-ui/src/locale/messages.sk_SK.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nastavenia @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logy @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error retrieving users @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error retrieving groups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Pri ukladaní nastavení sa vyskytla chyba. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Súborové úlohy @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Kôš @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Potvrdiť vymazanie @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Používatelia a skupiny @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Heslo bolo zmenené, ihneď prebehne odhlásenie. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Uložený používateľ . @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Chyba pri ukladaní používateľa. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Potvrdenie odstránenia účtu @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Táto operácia trvalo odstráni používateľský účet. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Uložená skupina . @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Chyba pri ukladaní skupiny. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Potvrdenie odstránenia skupiny @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Táto operácia trvalo odstráni skupinu. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentácia @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Uložené zobrazenia @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otvorené dokumenty @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zavrieť všetky @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Spravovať @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-mail @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administrácia @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfigurácia @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je dostupný. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikni pre zobrazenie. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx môže automaticky kontrolovať aktualizácie @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Ako to funguje? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Aktualizácia je k dispozícii @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Pri ukladaní nastavení vyhľadávania aktualizácií sa vyskytla chyba. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,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 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Priradiť typ dokumentu @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Priradiť odosielateľa @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-mail @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Zahrnúť: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Vybrať všetko + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Žiadny - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Úspešne vytvorený . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Chyba pri vytváraní . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Chyba pri ukladaní . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 e2069c1fc..63fd2d0d7 100644 --- a/src-ui/src/locale/messages.sl_SI.xlf +++ b/src-ui/src/locale/messages.sl_SI.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Nastavitve @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Dnevniki @@ -742,11 +742,35 @@ Preglejte dnevniške datoteke za preverjanje aplikacije in e-pošte. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Prikaži + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + vrstice + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Napaka pri pridobivanju uporabnikov @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Napaka pri pridobivanju skupin @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Prišlo je do napake ob shranjevanju nastavitev. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Datotečne naloge @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Smetnjak @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Potrdi brisanje @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Uporabniki & Skupine @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Geslo je bilo spremenjeno, kmalu boste za trenutek odjavljeni. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Shranjen uporabnik "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Napaka pri shranjevanju uporabnika. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Potrdi izbris uporabniškega računa @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Ta operacija bo trajno izbrisala ta uporabniški račun. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Uporabnik "" je izbrisan @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Napaka pri brisanju uporabnika "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Shranjena skupina "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Napaka pri shranjevanju skupine. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Potrdi izbris skupine @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Ta operacija bo trajno izbrisala to skupino. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Skupina "" je izbrisana @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Napaka pri brisanju skupine "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Shranjeni pogledi @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Odpri dokumente @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zapri vse @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Upravljaj @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Pošta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administracija @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguracija @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je na voljo. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klikni za ogled. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx lahko samodejno preveri za posodobitve @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kako to deluje? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Posodobitev na voljo @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Posodobljeni pogledi v stranski vrstici @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Napaka pri posodabljanju pogledov v stranski vrstici @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Prišlo je do napake ob shranjevanju nastavitev za pregled posodobitev. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Resnično @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Neresnično @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Išči dokumente ... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Ne @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Dodaj poizvedbo @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Dodaj izraz @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Brez razlikovanje velikosti črk @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Dodeli vrsto dokumenta @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Dodeli dopisnika @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-pošta @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Topp deaktiviran @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Vrstra sprožilca @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Izravnalni dnevi @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Glede na @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Polje po meri @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Ponavljajoče se @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtriraj imena datotek @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtriraj vire @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtriraj pot @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Napredni filtri @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Dodaj filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tip akcije @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Dodeli naslov @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Dodeli oznake @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Določi lastnika @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Odstrani oznake @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Odstrani dopisnike @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Odstrani lastnike @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Odstrani dovoljenja @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Ogled dovoljenj @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Uredi dovoljenja @@ -5422,7 +5446,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 +5454,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 +5462,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 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Priloži dokument @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL spletnega kavlja @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parametri spletnega kavlja @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Telo spletnega kavlja @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Glave spletnega kavlja @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Vključi dokument @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Odpri filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil uspešno posodobljen @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Napaka pri shranjevanju profila @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Napaka pri generiranju avtorizacijskega žetona @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Napaka pri odstranjevanju računa družabnega omrežja @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Napaka pri pridobivanju nastavitev TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP je bil uspešno aktiviran @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Napaka pri aktiviranju TOTP-ja @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP je bil uspešno deaktiviran @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Napaka pri deaktiviranju TOTP-ja @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Tiskanje ni uspelo. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Napaka pri nalaganju dokumenta za tiskanje. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Pri nalaganju datoteke tiff je prišlo do napake: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Vključi: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Arhivirane datoteke @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Izvirne datoteke @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Uporaba formatiranega imena datoteke @@ -8670,6 +8694,14 @@ Izberite vse + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Izberite: + None @@ -8686,18 +8718,6 @@ Brez - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Prikaži - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Napaka pri posodabljanju dovoljenj @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Uspešno ustvarjeno . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Prišlo je do napake med ustvarjanjem . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Datoteka "" je bila uspešno posodobljena. @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Prišlo je do napake med shranjevanjem . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Povezani dokumenti ne bodo izbrisani. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Napaka med brisanjem elementa @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Dovoljenja so bila uspešno posodobljena @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 To dejanje bo dokončno izbrisalo vse elemente. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Elementi uspešno izbrisani @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 2117d661f..e1079cb28 100644 --- a/src-ui/src/locale/messages.sr_CS.xlf +++ b/src-ui/src/locale/messages.sr_CS.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Podešavanja @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logovi @@ -742,11 +742,35 @@ Pregledajte logove za aplikaciju i za proveru imejla. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Prikaži + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + linije + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Greška prilikom učitavanja korisnika @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Greška prilikom učitavanja grupa @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Došlo je do greške prilikom čuvanja podešavanja. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Obrada dokumenata @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Otpad @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Potvrdi brisanje @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Korisnici i Grupe @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Lozinka je promenjena, bićete odjavljeni trenutno. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Sačuvan korisnik "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Greška prilikom čuvanja korisnika. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Potvrdi brisanje korisničkog naloga @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Ova operacija će trajno obrisati ovaj korisnički nalog. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Korisnik "" obrisan @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Greška prilikom brisanja korisnika "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Sačuvana grupa "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Greška prilikom čuvanja grupe. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Potvrdi brisanje korisničke grupe @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Ova operacija će trajno obrisati ovu korisničku grupu. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Grupa "" obrisana @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Greška prilikom brisanja grupe "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentacija @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Sačuvani pregledi @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Otvorena dokumenta @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Zatvori svе @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Upravljanje @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Imejl @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administracija @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguracija @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 je dostupno. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klik za prеglеd. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx može automatski da proveri da li postoje ažuriranja @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Kako ovo radi? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Dostupno jе ažuriranjе @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Prikazi bočne trake su ažurirani @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Greška pri ažuriranju prikaza bočne trake @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Došlo je do greške prilikom čuvanja podešavanja. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Tačno @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Netačno @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Pretraži dokumenta... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Nije @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Dodaj upit @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Dodaj izraz @@ -3978,7 +4002,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 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Dodeli tip dokumenta @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Dodeli korespondenta @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Imejl @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp je deaktiviran @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Tip okidača @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Dani za pomeranje @@ -5070,7 +5094,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 +5102,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 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Prilagođeno polje @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Ponavljajući @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filtriraj ime fajla @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filtriraj izvore @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filtriraj putanju @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Napredni filteri @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Dodaj filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Tip radnje @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Dodeli naslov @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Dodeli oznake @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Dodeli vlasnika @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Ukloni oznake @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Ukloni korespondente @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Ukloni vlasnike @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Ukloni dozvole @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Pregledaj dozvole @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Izmeni dozvole @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Naslov imejla @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Telo imejla @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Primaoca imejla @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Priloži dokument @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL webhook-a @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Parametri webhook-a @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Telo webhook-a @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Zaglavlja webhook-a @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Uključi dokument @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Otvori filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil je uspešno ažuriran @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Greška prilikom čuvanja profila @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Greška prilikom generisanja auth tokena @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Greška prilikom isključivanja naloga @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Greška pri preuzimanju TOTP podešavanja @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP je uspešno aktiviran @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Greška pri aktiviranju TOTP-a @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP je uspešno deaktiviran @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Greška pri deaktiviranju TOTP-a @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Štampanje nije uspelo. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Greška pri učitavanju dokumenta za štampanje. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Došlo je do greške prilikom učitavanja TIFF-a: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Uključi: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Arhivski fajlovi @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Originalni fajlovi @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Koristi formatirani naziv fajla @@ -8671,6 +8695,14 @@ Odaberi sve + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Odaberi: + None @@ -8687,18 +8719,6 @@ Nijedan - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Prikaži - Sort @@ -9767,7 +9787,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Greška prilikom izmene dozvola @@ -9907,7 +9927,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Uspešno kreirano . @@ -9915,7 +9935,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Greška se pojavilia prilikom kreiranja . @@ -9923,7 +9943,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Uspešno ažuriranje za "". @@ -9931,7 +9951,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Greška se pojavilia prilikom čuvanja . @@ -9939,7 +9959,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Povezani dokumenti neće biti obrisani. @@ -9947,7 +9967,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Greška prilikom brisanja elementa @@ -9955,7 +9975,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Dozvole su uspešno ažurirane @@ -9963,7 +9983,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Ova operacija će trajno obrisati sve objekte. @@ -9971,7 +9991,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objekti su uspešno obrisani @@ -9979,7 +9999,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 76fb70e36..480ab2ed3 100644 --- a/src-ui/src/locale/messages.sv_SE.xlf +++ b/src-ui/src/locale/messages.sv_SE.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Inställningar @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Loggar @@ -742,11 +742,35 @@ Granska loggfilerna för programmet och för e-postkontroll. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Visa + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Kunde inte hämta användare @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Kunde inte hämta grupper @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ett fel inträffade när inställningarna skulle sparas. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Filuppgifter @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Papperskorg @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Bekräfta borttagning @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Användare & Grupper @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Lösenordet har ändrats, du kommer att tillfälligt loggas ut. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Sparade användaren "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Kunde inte spara användaren. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Bekräfta borttagning av användarkonto @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Denna åtgärd kommer att ta bort detta användarkonto permanent. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Sparade gruppen "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Kunde inte spara gruppen. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Bekräfta borttagning av användargruppen @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Denna åtgärd kommer att ta bort denna användargrupp permanent. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokumentation @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Sparade vyer @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Öppna dokument @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Stäng alla @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Hantera @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 E-post @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Administration @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Konfiguration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 är tillgänglig. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Klicka för att visa. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx kan automatiskt söka efter uppdateringar @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Hur fungerar detta? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Uppdatering tillgänglig @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Ett fel uppstod när uppdateringskontrollen skulle sparas. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Sant @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Falskt @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Ej @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Ej skiftlägeskänsligt @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Tilldela dokumenttyp @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Tilldela korrespondent @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-post @@ -4954,7 +4978,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 +4986,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 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Tilldela titel @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Tilldelar taggar @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Tilldela ägare @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Ta bort taggar @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Ta bort korrespondenter @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Ta bort ägare @@ -5398,7 +5422,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 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Visa behörigheter @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Redigera behörigheter @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Inkludera: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ Välj alla + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Ingen - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Visa - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Skapade . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Kunde inte skapa . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Kunde inte spara . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 17bfe64be..45ec44995 100644 --- a/src-ui/src/locale/messages.th_TH.xlf +++ b/src-ui/src/locale/messages.th_TH.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 การตั้งค่า @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Logs @@ -742,11 +742,35 @@ Review the log files for the application and for email checking. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Error retrieving users @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Error retrieving groups @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 An error occurred while saving settings. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 รายการงาน @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Trash @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 ยืนยันการลบ @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 ผู้ใช้งาน & กลุ่ม @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Password has been changed, you will be logged out momentarily. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Saved user "". @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 เกิดข้อผิดพลาดในการบันทึกผู้ใช้งาน @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Confirm delete user account @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 This operation will permanently delete this user account. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Saved group "". @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 เกิดข้อผิดพลาดระหว่างบันทึกกลุ่ม @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Confirm delete user group @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 This operation will permanently delete this user group. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 เอกสารอ้างอิง @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 การค้นที่เก็บไว้ @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 เปิดเอกสาร @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 ปิดทั้งหมด @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 จัดการ @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 เมล @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 การจัดการระบบ @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Configuration @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 ใช้งานได้ @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 คลิกเพื่อดู @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx can automatically check for updates @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 ระบบนี้ทำงานยังไง? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 มีการอัพเดท @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Sidebar views updated @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Error updating sidebar views @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 An error occurred while saving update checking settings. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 True @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 False @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Search docs... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Not @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Add query @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Add expression @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 ไม่คำนึงถึงตัวพิมพ์เล็ก-ใหญ่ @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 กำหนดประเภทเอกสาร @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 กำหนดผู้เขียน @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 อีเมล @@ -4954,7 +4978,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 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 แก้ไขบัญชีผู้ใช้งาน @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp deactivated @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Trigger type @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Relative to @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Custom field @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Filter filename @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Filter sources @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Filter path @@ -5174,7 +5198,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 +5206,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 +5214,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 +5222,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 +5230,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 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Action type @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Assign title @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Assign tags @@ -5278,7 +5302,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 +5310,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 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Assign owner @@ -5302,7 +5326,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 +5334,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 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Remove tags @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Remove correspondents @@ -5366,7 +5390,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 +5398,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 +5406,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 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Remove owners @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Remove permissions @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 View permissions @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Edit permissions @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Email subject @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Email body @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Email recipients @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Attach document @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook url @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook headers @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Include document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Open filter @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profile updated successfully @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 รวม: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8670,6 +8694,14 @@ เลือกทั้งหมด + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ ไม่มี - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 fce82511e..efedef8ad 100644 --- a/src-ui/src/locale/messages.tr_TR.xlf +++ b/src-ui/src/locale/messages.tr_TR.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Ayarlar @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Günlükler @@ -742,11 +742,35 @@ Uygulama ve e-posta kontrolü için günlük dosyalarını inceleyin. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Show + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Kullanıcıları getirirken hata oluştu @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Grupları getirirken hata oluştu @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Ayarlar kaydedilirken bir hata oluştu. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Dosya Görevleri @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Çöp kutusu @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Silmeyi onayla @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Kullanıcılar & Gruplar @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Parola değiştirildi, otomatik olarak çıkış yapılacak. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 "" kullanıcısı kaydedildi. @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Kullanıcı kaydedilirken hata oluştu. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Kullanıcı silinmesini onaylayın @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Bu eylem kullanıcıyı kalıcı olarak silecek. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 "" kullanıcısı silindi @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 "" kullanıcısını silerken hata alındı. @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 "" grubu kaydedildi. @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Grup kaydedilirken hata oluştu. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Kullanıcı grubunu silmeyi onayla @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Bu eylem kullanıcıyı kalıcı olarak silecek. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 "" grubu silindi @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 "" grubu silinirken hata alındı. @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Dokümantasyon @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Kaydedilen görünümler @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Belgeleri aç @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Tümünü kapat @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Yönet @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Posta @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Yönetici @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Yapılandırma @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 Github @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 kullanılabilir. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Görüntülemek için tıklayın. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx güncellemeleri otomatik olarak kontrol edebilir @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Bu nasıl çalışıyor? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Güncelleme mevcut @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Kenar çubuğu görünümleri güncellendi @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Kenar çubuğu görünümlerini güncellerken hata oluştu @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Güncelleme denetimi ayarları kaydedilirken bir hata oluştu. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Doğru @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Yanlış @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Belgelerde ara... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Değil @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Sorgu Ekle @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 İfade Ekle @@ -3978,7 +4002,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 +4476,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 +4496,7 @@ tüm krite src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Muhatap ata @@ -4484,7 +4508,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 @@ -4848,7 +4872,7 @@ tüm krite src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 E-posta @@ -4956,7 +4980,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 +4988,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 +4996,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 +5004,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 +5072,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 +5080,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 +5088,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 +5096,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 +5104,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 +5112,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 +5120,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 +5128,7 @@ tüm krite Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Recurring @@ -5112,7 +5136,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 +5144,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 +5152,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 +5160,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 +5168,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 +5176,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 +5184,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 +5192,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 +5200,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 +5208,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 +5216,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 +5224,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 +5232,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 +5240,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 +5248,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 +5256,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 +5264,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 +5272,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 +5280,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 +5288,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 +5296,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 +5304,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 +5312,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 +5320,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 +5328,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 +5336,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 +5344,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 +5352,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 +5384,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 +5392,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 +5400,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 +5408,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 +5416,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 +5424,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 +5432,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 +5440,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 +5448,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 +5456,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 +5464,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 +5472,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 +5480,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 +5488,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 +5496,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 +5504,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 +5512,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 +5520,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 +5528,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 +5884,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 +5893,7 @@ tüm krite Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 filtresini aç @@ -5949,7 +5973,7 @@ tüm krite src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6086,11 +6110,11 @@ tüm krite src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6622,7 +6646,7 @@ tüm krite Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Profil başarıyla güncellendi @@ -6630,7 +6654,7 @@ tüm krite Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Error saving profile @@ -6638,7 +6662,7 @@ tüm krite Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Error generating auth token @@ -6646,7 +6670,7 @@ tüm krite Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Error disconnecting social account @@ -6654,7 +6678,7 @@ tüm krite Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Error fetching TOTP settings @@ -6662,7 +6686,7 @@ tüm krite TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP activated successfully @@ -6670,11 +6694,11 @@ tüm krite Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Error activating TOTP @@ -6682,7 +6706,7 @@ tüm krite TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP deactivated successfully @@ -6690,11 +6714,11 @@ tüm krite Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Error deactivating TOTP @@ -8008,7 +8032,7 @@ tüm krite Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8016,7 +8040,7 @@ tüm krite Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8024,11 +8048,11 @@ tüm krite An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8148,7 +8172,7 @@ tüm krite Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Include: @@ -8156,7 +8180,7 @@ tüm krite Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Archived files @@ -8164,7 +8188,7 @@ tüm krite Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Original files @@ -8172,7 +8196,7 @@ tüm krite Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Use formatted filename @@ -8672,6 +8696,14 @@ tüm krite Tümünü seç + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8688,18 +8720,6 @@ tüm krite Yok - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Show - Sort @@ -9768,7 +9788,7 @@ tüm krite src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Error updating permissions @@ -9908,7 +9928,7 @@ tüm krite Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Successfully created . @@ -9916,7 +9936,7 @@ tüm krite Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Error occurred while creating . @@ -9924,7 +9944,7 @@ tüm krite Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9932,7 +9952,7 @@ tüm krite Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Error occurred while saving . @@ -9940,7 +9960,7 @@ tüm krite Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Associated documents will not be deleted. @@ -9948,7 +9968,7 @@ tüm krite Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Error while deleting element @@ -9956,7 +9976,7 @@ tüm krite Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Permissions updated successfully @@ -9964,7 +9984,7 @@ tüm krite This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 This operation will permanently delete all objects. @@ -9972,7 +9992,7 @@ tüm krite Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Objects deleted successfully @@ -9980,7 +10000,7 @@ tüm krite Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 a705d9186..cdf862584 100644 --- a/src-ui/src/locale/messages.uk_UA.xlf +++ b/src-ui/src/locale/messages.uk_UA.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Налаштування @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Логи @@ -742,11 +742,35 @@ Переглянути файли журналу для програми та перевірки пошти. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + Показувати + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Помилка отримання користувачів @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Помилка отримання груп @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Сталися помилки при збереженні налаштувань. @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Обробка файлів @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Смітник @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Підтвердьте видалення @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Користувачі та групи @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Пароль змінено, ви миттєво вийдете з системи. @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Користувача "" збережено. @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Помилка при збереженні користувача. @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Підтвердьте видалення облікового запису @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Ця операція остаточно видалить даний обліковий запис. @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Deleted user "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Error deleting user "". @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Групу "" збережено. @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Помилка при збереженні групи. @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Підтвердьте видалення групи користувачів @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Ця операція остаточно видалить цю групу користувачів. @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Deleted group "" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Error deleting group "". @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Документація @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Збережені представлення @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Відкрити документи @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Закрити все @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Керування @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Ел. пошта @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Адміністрування @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Налаштування @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 є доступним для оновлення. @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Натисніть для перегляду. @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx може автоматично перевіряти наявність оновлень @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Як це працює? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Доступне оновлення @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Представлення бічної панелі оновлено @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Помилка оновлення представлень бічної панелі @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Сталася помилка при збереженні налаштувань для перевірки оновлень. @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 Вірно @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 Невірно @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Шукати в документації... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Не @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Додати запит @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Додати вираз @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 Нечутливий до регістру @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 Призначити тип документа @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 Призначити кореспондента @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Ел. пошта @@ -4954,7 +4978,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 Створити новий обліковий запис користувача @@ -4962,7 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 Редагувати обліковий запис @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP вимкнено @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 Тип тригера @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 Offset days @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 Відносно @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 Користувацьке поле @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Повторюваний @@ -5110,7 +5134,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 +5142,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 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 Фільтрувати назви файлів @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 Джерела фільтрації @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 Шлях фільтра @@ -5174,7 +5198,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 +5206,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 Правило фільтрування пошти @@ -5190,7 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 Алгоритм розпізнавання вмісту @@ -5206,7 +5230,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 Шаблон відповідності вмісту @@ -5214,7 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -5230,7 +5254,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 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 Тип дії @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 Призначити назву @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Призначити теги @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 Призначити шлях до сховища @@ -5286,7 +5310,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 Призначити користувацькі поля @@ -5294,7 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 Призначити власника @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 Призначити дозволи на перегляд @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 Призначити права на редагування @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Вилучити позначки @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 Видалити всіх кореспондентів @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 Видалити всі типи документів @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 Видалити всі шляхи зберігання @@ -5382,7 +5406,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 Вилучити власне поле @@ -5390,7 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 Видалити власників @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 Вилучити дозволи @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Переглянути дозволи @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 Редагувати дозволи @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Тема електронного листа @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Текст листа @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 Одержувачі електронної пошти @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 Вкласти документ @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL-адреса вебхука @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Параметри вебхука @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Тіло вебхука @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Заголовки веб-хуків @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 Включити документ @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 Відкрити фільтр @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Обліковий запис успішно оновлено @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Помилка збереження профілю @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Помилка генерації токена авторизації @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Помилка від'єднання акаунта соціальної мережі @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Помилка отримання налаштувань TOTP @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP успішно активовано @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Помилка активації TOTP @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP успішно деактивовано @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Помилка деактивації TOTP @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 An error occurred loading tiff: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Включити: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Архівовані файли @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Оригінальні файли @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Використовувати відформатовану назву файлу @@ -8670,6 +8694,14 @@ Вибрати всі + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8686,18 +8718,6 @@ Немає - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - Показувати - Sort @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Помилка оновлення прав доступу @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Успішно створено . @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Виникла помилка протягом створення . @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Successfully updated "". @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Виникла помилка під час збереження . @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Пов'язані документи не будуть видалені. @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Помилка видалення елемента @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Права доступу успішно оновлено @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Ця операція остаточно видалить всі об'єкти. @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Об'єкти успішно видалені @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 Помилка видалення об'єктів diff --git a/src-ui/src/locale/messages.vi_VN.xlf b/src-ui/src/locale/messages.vi_VN.xlf index 9bccffcde..aba0a20b8 100644 --- a/src-ui/src/locale/messages.vi_VN.xlf +++ b/src-ui/src/locale/messages.vi_VN.xlf @@ -410,11 +410,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -432,11 +432,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -482,11 +482,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 Cài đặt @@ -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 @@ -862,11 +862,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 Nhật ký @@ -882,11 +882,37 @@ Xem lại log của ứng dụng và kiểm tra email. + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + + Trình diễn + + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -900,11 +926,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1303,11 +1329,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1677,19 +1703,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 +1741,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 +1785,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 +1921,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 @@ -1949,7 +1975,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 Lỗi truy xuất người dùng @@ -1963,7 +1989,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 Lỗi truy xuất nhóm @@ -2007,7 +2033,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 Đã xảy ra lỗi khi lưu các thiết lập. @@ -2021,11 +2047,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 Tác vụ tệp @@ -2547,11 +2573,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 Thùng rác @@ -2680,11 +2706,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 @@ -2700,7 +2726,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2776,7 +2802,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2818,11 +2844,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 Xác nhận xoá @@ -2850,11 +2876,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2870,7 +2896,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2988,11 +3014,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 Người dùng và Nhóm @@ -3178,11 +3204,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 Mật khẩu đã đổi, bạn sẽ được logout sau đây @@ -3192,7 +3218,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 Đã lưu tài khoản " @@ -3204,7 +3230,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 Lỗi lưu tài khoản. @@ -3214,7 +3240,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 Xác nhận xóa tài khoản @@ -3224,7 +3250,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 Thao tác này sẽ xóa vĩnh viễn tài khoản @@ -3234,11 +3260,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -3274,7 +3300,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -3288,7 +3314,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 Người dùng đã xóa "" @@ -3298,7 +3324,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 Lỗi xóa người dùng "". @@ -3308,7 +3334,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 Đã lưu nhóm " @@ -3320,7 +3346,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 Lỗi khi xóa nhóm. @@ -3330,7 +3356,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 Xác nhận xóa nhóm @@ -3340,7 +3366,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 Thao tác này sẽ xóa vĩnh viễn nhóm. @@ -3350,7 +3376,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 Nhóm đã xóa "" @@ -3360,7 +3386,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 Lỗi xóa nhóm "". @@ -3415,11 +3441,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 Tài liệu tham khảo @@ -3429,11 +3455,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 Lượt xem đã lưu @@ -3443,7 +3469,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 Mở tài liệu @@ -3453,11 +3479,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 Đóng tất cả @@ -3467,7 +3493,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 Quản lý @@ -3477,11 +3503,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3495,11 +3521,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3533,11 +3559,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3551,11 +3577,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3569,11 +3595,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3591,11 +3617,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3609,11 +3635,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 Thư @@ -3623,7 +3649,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 Quản trị @@ -3633,11 +3659,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 Cấu hình @@ -3647,7 +3673,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3657,7 +3683,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 đã có sẵn. @@ -3667,7 +3693,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 Nhấp để xem. @@ -3677,7 +3703,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx có thể tự động check update @@ -3687,7 +3713,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 Cách thức hoạt động? @@ -3697,7 +3723,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 Có bản cập nhật @@ -3707,7 +3733,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 Đã cập nhật các views sidebar @@ -3717,7 +3743,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 Lỗi cập nhật các views sidebar @@ -3727,7 +3753,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 Đã có lỗi khi lưu các thiết lập kiểm tra cập nhật. @@ -3803,7 +3829,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -4291,11 +4317,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 ĐÚNG VẬY @@ -4309,11 +4335,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 SAI @@ -4323,11 +4349,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 Tài liệu tìm kiếm ... @@ -4337,7 +4363,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -4351,7 +4377,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -4381,7 +4407,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 Không @@ -4391,7 +4417,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 Thêm truy vấn @@ -4401,7 +4427,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 Thêm biểu thức @@ -4627,7 +4653,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 +5235,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 +5259,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 +5273,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 @@ -5685,7 +5711,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Thư điện tử @@ -5813,7 +5839,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 +5849,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 +5859,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 +5869,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 +5951,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 +5961,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 +5971,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 +5981,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 +5991,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 +6001,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 +6011,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 +6021,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 Định kỳ @@ -6005,7 +6031,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 +6039,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 +6049,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 +6059,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 +6069,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 +6079,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 +6089,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 +6099,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 +6109,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 +6119,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 +6129,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 +6139,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 +6149,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 +6159,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 Advanced Filters @@ -6141,7 +6167,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 Add filter @@ -6149,7 +6175,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 +6183,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 +6191,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 +6199,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 +6209,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 +6217,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 Gán thẻ @@ -6201,7 +6227,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 +6237,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 +6247,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 +6257,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 +6267,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 +6277,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 Xóa thẻ @@ -6261,31 +6287,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 +6321,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 +6331,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 +6341,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 +6351,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 +6361,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 +6371,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 +6381,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 Xem quyền @@ -6365,7 +6391,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 +6401,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 Chủ đề email @@ -6385,7 +6411,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 Cơ quan email @@ -6395,7 +6421,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 +6431,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 +6441,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 URL Webhook @@ -6425,7 +6451,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 +6461,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 +6471,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook params @@ -6455,7 +6481,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Cơ thể webhook @@ -6465,7 +6491,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Tiêu đề webhook @@ -6475,7 +6501,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 +6915,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 +6926,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 OpenFilter @@ -6988,7 +7014,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -7153,11 +7179,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -7779,7 +7805,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 Hồ sơ cập nhật thành công @@ -7789,7 +7815,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 Hồ sơ lưu lỗi @@ -7799,7 +7825,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 Lỗi tạo mã thông báo auth @@ -7809,7 +7835,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 Lỗi ngắt kết nối tài khoản xã hội @@ -7819,7 +7845,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 Lỗi tìm nạp cài đặt TOTP @@ -7829,7 +7855,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP kích hoạt thành công @@ -7839,11 +7865,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 Lỗi kích hoạt TOTP @@ -7853,7 +7879,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP đã vô hiệu hóa thành công @@ -7863,11 +7889,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 Lỗi hủy kích hoạt TOTP @@ -9450,7 +9476,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 Print failed. @@ -9458,7 +9484,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 Error loading document for printing. @@ -9466,11 +9492,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 Đã xảy ra lỗi tải TIFF: @@ -9614,7 +9640,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 Bao gồm: @@ -9624,7 +9650,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 Các tập tin được lưu trữ @@ -9634,7 +9660,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 Tệp gốc @@ -9644,7 +9670,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 Sử dụng tên tệp định dạng @@ -10246,6 +10272,14 @@ Chọn tất cả + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -10262,20 +10296,6 @@ Không có - - - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - - Trình diễn @@ -11586,7 +11606,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 Lỗi khi cập nhật quyền @@ -11736,7 +11756,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 Được tạo thành công. @@ -11746,7 +11766,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 Lỗi xảy ra trong khi tạo. @@ -11756,7 +11776,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 Cập nhật thành công "". @@ -11766,7 +11786,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 Lỗi xảy ra trong khi lưu. @@ -11776,7 +11796,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 Các tài liệu liên quan sẽ không bị xóa. @@ -11786,7 +11806,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 Lỗi trong khi xóa phần tử @@ -11796,7 +11816,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 Quyền được cập nhật thành công @@ -11806,7 +11826,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 Hoạt động này sẽ xóa vĩnh viễn tất cả các đối tượng. @@ -11816,7 +11836,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 Đối tượng đã xóa thành công @@ -11826,7 +11846,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 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 cb555cb9b..5db259e13 100644 --- a/src-ui/src/locale/messages.zh_CN.xlf +++ b/src-ui/src/locale/messages.zh_CN.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 设置 @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 日志 @@ -742,11 +742,35 @@ 检查应用程序和电子邮件检查日志文件。 + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + 显示列 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 获取用户时发生错误 @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 获取用户组时发生错误 @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 保存设置时发生错误。 @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 文件任务 @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 回收站 @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 确认删除 @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 用户 & 组 @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 密码已更改,您将会被立即注销。 @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 已保存用户 ""。 @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 保存用户时发生错误。 @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 确认删除用户帐户 @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 此操作将永久删除此用户帐户。 @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 已删除用户 "" @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 删除用户 " "时出错。 @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 已保存组 ""。 @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 保存用户组时发生错误。 @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 确认删除用户组 @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 此操作将永久删除此用户组。 @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 已删除群组"" @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 删除群组 " "时发生错误。 @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 帮助文档 @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 保存视图 @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 打开文档 @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 全部关闭 @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 管理 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 邮件 @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 管理 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 配置 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 可用 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 点击查看 @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx 可以自动检查更新 @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 这是如何运作的? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 有可用更新 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 侧边栏视图已更新 @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 更新侧边栏视图时发生错误 @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 保存更新检查设置时发生错误。 @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 搜索文档... @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 添加查询 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 添加表达式 @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 忽略大小写 @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 分配文档类型 @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 分配联系人 @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 Email @@ -4954,7 +4978,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 创建新用户 @@ -4962,7 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 编辑用户 @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 Totp 已停用 @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 触发类型 @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 偏移天数 @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 相对于 @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 自定义字段 @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 定期 @@ -5110,7 +5134,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 触发器循环中。 @@ -5118,7 +5142,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 循环间隔天数 @@ -5126,7 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 筛选文件名 @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 筛选源 @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 筛选路径 @@ -5174,7 +5198,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 +5206,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 筛选邮件规则 @@ -5190,7 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 内容匹配算法 @@ -5206,7 +5230,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 内容匹配模式 @@ -5214,7 +5238,7 @@ Advanced Filters src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 181 + 183 高级筛选 @@ -5222,7 +5246,7 @@ Add filter src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 188 + 190 添加筛选条件 @@ -5230,7 +5254,7 @@ No advanced workflow filters defined. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 193 + 195 未定义高级工作流筛选条件。 @@ -5238,7 +5262,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 +5270,7 @@ Action type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 256 + 258 操作类型 @@ -5254,7 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 指定标题 @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 分配标签 @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 指定存储路径 @@ -5286,7 +5310,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 分配自定义字段 @@ -5294,7 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 分配用户 @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 分配查看权限 @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 分配编辑权限 @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 移除标签 @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 移除所有通讯员 @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 移除所有文档类型 @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 移除存储路径 @@ -5382,7 +5406,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 移除自定义字段 @@ -5390,7 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 移除所有者 @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 移除权限 @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 查看权限 @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 编辑权限 @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 邮件主题 @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 邮件正文 @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 邮件收件人 @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 附加文件 @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook 链接 @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook参数 @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook负载 @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook标头 @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 添加文档 @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 开启过滤 @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 帐户信息更新成功 @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 保存帐户信息时发生错误 @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 生成验证令牌时发生错误 @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 断开社交账户时发生错误 @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 獲取TOTP 設定時出錯 @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP 啟動成功 @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 啟動TOTP時錯誤 @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP 停用成功 @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 停用TOTP時錯誤 @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 打印失败。 @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 加载打印文档时出错。 @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 加载内容时发生错误: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 包含: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 归档文件 @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 原始文件 @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 使用格式化文件名 @@ -8669,6 +8693,14 @@ 全选 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + Select: + None @@ -8685,18 +8717,6 @@ - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 显示列 - Sort @@ -9765,7 +9785,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 更新权限时发生错误 @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 成功创建 @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 创建 时发生错误。 @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 成功更新 @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 保存 时发生错误。 @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 已关联的文档将不会被删除。 @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 删除元素时发生错误 @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 权限更新成功 @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 此操作将永久删除所有对象。 @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 对象删除成功 @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 删除对象时发生错误 diff --git a/src-ui/src/locale/messages.zh_TW.xlf b/src-ui/src/locale/messages.zh_TW.xlf index 36c87b8a7..76738304d 100644 --- a/src-ui/src/locale/messages.zh_TW.xlf +++ b/src-ui/src/locale/messages.zh_TW.xlf @@ -334,11 +334,11 @@ src/app/components/app-frame/app-frame.component.html - 82 + 84 src/app/components/app-frame/app-frame.component.html - 84 + 86 src/app/components/dashboard/dashboard.component.html @@ -354,11 +354,11 @@ src/app/components/app-frame/app-frame.component.html - 89 + 91 src/app/components/app-frame/app-frame.component.html - 91 + 93 src/app/components/document-list/document-list.component.ts @@ -402,11 +402,11 @@ src/app/components/app-frame/app-frame.component.html - 253 + 255 src/app/components/app-frame/app-frame.component.html - 255 + 257 設定 @@ -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 @@ -726,11 +726,11 @@ src/app/components/app-frame/app-frame.component.html - 288 + 290 src/app/components/app-frame/app-frame.component.html - 291 + 293 事件記錄 @@ -742,11 +742,35 @@ 檢閱應用程式和電子郵件檢查的事件紀錄。 + + Show + + src/app/components/admin/logs/logs.component.html + 8 + + + src/app/components/document-list/document-list.component.html + 37 + + + src/app/components/manage/saved-views/saved-views.component.html + 52 + + 顯示 + + + lines + + src/app/components/admin/logs/logs.component.html + 17 + + lines + Auto refresh src/app/components/admin/logs/logs.component.html - 8 + 21 src/app/components/admin/tasks/tasks.component.html @@ -758,11 +782,11 @@ Loading... src/app/components/admin/logs/logs.component.html - 24 + 38 src/app/components/admin/logs/logs.component.html - 36 + 53 src/app/components/admin/tasks/tasks.component.html @@ -1102,11 +1126,11 @@ src/app/components/app-frame/app-frame.component.html - 213 + 215 src/app/components/app-frame/app-frame.component.html - 215 + 217 src/app/components/manage/saved-views/saved-views.component.html @@ -1426,19 +1450,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 +1486,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 +1526,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 +1646,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 @@ -1670,7 +1694,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 56 + 75 取得使用者時發生錯誤 @@ -1682,7 +1706,7 @@ src/app/components/admin/users-groups/users-groups.component.ts - 68 + 89 取得群組時發生錯誤 @@ -1718,7 +1742,7 @@ src/app/components/app-frame/app-frame.component.ts - 167 + 180 儲存設定時發生錯誤。 @@ -1730,11 +1754,11 @@ src/app/components/app-frame/app-frame.component.html - 276 + 278 src/app/components/app-frame/app-frame.component.html - 278 + 280 檔案任務 @@ -2174,11 +2198,11 @@ src/app/components/app-frame/app-frame.component.html - 236 + 238 src/app/components/app-frame/app-frame.component.html - 239 + 241 垃圾桶 @@ -2290,11 +2314,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 @@ -2310,7 +2334,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 143 + 145 src/app/components/manage/custom-fields/custom-fields.component.html @@ -2386,7 +2410,7 @@ src/app/components/manage/management-list/management-list.component.ts - 239 + 243 src/app/components/manage/saved-views/saved-views.component.html @@ -2422,11 +2446,11 @@ src/app/components/manage/management-list/management-list.component.ts - 235 + 239 src/app/components/manage/management-list/management-list.component.ts - 352 + 362 確認刪除 @@ -2450,11 +2474,11 @@ src/app/components/admin/users-groups/users-groups.component.ts - 123 + 145 src/app/components/admin/users-groups/users-groups.component.ts - 176 + 198 src/app/components/manage/custom-fields/custom-fields.component.ts @@ -2470,7 +2494,7 @@ src/app/components/manage/management-list/management-list.component.ts - 354 + 364 src/app/components/manage/workflows/workflows.component.ts @@ -2566,11 +2590,11 @@ src/app/components/app-frame/app-frame.component.html - 267 + 269 src/app/components/app-frame/app-frame.component.html - 269 + 271 使用者與群組 @@ -2738,11 +2762,11 @@ Password has been changed, you will be logged out momentarily. src/app/components/admin/users-groups/users-groups.component.ts - 94 + 116 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 195 + 196 密碼已變更,將於稍後登出。 @@ -2750,7 +2774,7 @@ Saved user "". src/app/components/admin/users-groups/users-groups.component.ts - 103 + 125 已儲存使用者「」。 @@ -2758,7 +2782,7 @@ Error saving user. src/app/components/admin/users-groups/users-groups.component.ts - 113 + 135 儲存使用者時發生錯誤。 @@ -2766,7 +2790,7 @@ Confirm delete user account src/app/components/admin/users-groups/users-groups.component.ts - 121 + 143 確認刪除使用者帳號 @@ -2774,7 +2798,7 @@ This operation will permanently delete this user account. src/app/components/admin/users-groups/users-groups.component.ts - 122 + 144 將永久刪除此使用者帳號。 @@ -2782,11 +2806,11 @@ Proceed src/app/components/admin/users-groups/users-groups.component.ts - 125 + 147 src/app/components/admin/users-groups/users-groups.component.ts - 178 + 200 src/app/components/document-detail/document-detail.component.ts @@ -2822,7 +2846,7 @@ src/app/components/manage/management-list/management-list.component.ts - 356 + 366 src/app/components/manage/workflows/workflows.component.ts @@ -2834,7 +2858,7 @@ Deleted user "" src/app/components/admin/users-groups/users-groups.component.ts - 131 + 153 已刪除使用者「 @@ -2842,7 +2866,7 @@ Error deleting user "". src/app/components/admin/users-groups/users-groups.component.ts - 138 + 160 刪除使用者「」時發生錯誤。 @@ -2850,7 +2874,7 @@ Saved group "". src/app/components/admin/users-groups/users-groups.component.ts - 158 + 180 已儲存群組「」。 @@ -2858,7 +2882,7 @@ Error saving group. src/app/components/admin/users-groups/users-groups.component.ts - 166 + 188 儲存群組時發生錯誤。 @@ -2866,7 +2890,7 @@ Confirm delete user group src/app/components/admin/users-groups/users-groups.component.ts - 174 + 196 確認刪除使用者群組 @@ -2874,7 +2898,7 @@ This operation will permanently delete this user group. src/app/components/admin/users-groups/users-groups.component.ts - 175 + 197 將永久刪除此使用者群組。 @@ -2882,7 +2906,7 @@ Deleted group "" src/app/components/admin/users-groups/users-groups.component.ts - 184 + 206 已刪除群組「 @@ -2890,7 +2914,7 @@ Error deleting group "". src/app/components/admin/users-groups/users-groups.component.ts - 191 + 213 刪除群組「」時發生錯誤。 @@ -2934,11 +2958,11 @@ src/app/components/app-frame/app-frame.component.html - 297 + 299 src/app/components/app-frame/app-frame.component.html - 300 + 302 說明文件 @@ -2946,11 +2970,11 @@ Saved views src/app/components/app-frame/app-frame.component.html - 99 + 101 src/app/components/app-frame/app-frame.component.html - 104 + 106 已儲存的檢視表 @@ -2958,7 +2982,7 @@ Open documents src/app/components/app-frame/app-frame.component.html - 139 + 141 開啟文件 @@ -2966,11 +2990,11 @@ Close all src/app/components/app-frame/app-frame.component.html - 159 + 161 src/app/components/app-frame/app-frame.component.html - 161 + 163 關閉全部 @@ -2978,7 +3002,7 @@ Manage src/app/components/app-frame/app-frame.component.html - 170 + 172 文件管理 @@ -2986,11 +3010,11 @@ Correspondents src/app/components/app-frame/app-frame.component.html - 176 + 178 src/app/components/app-frame/app-frame.component.html - 178 + 180 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3002,11 +3026,11 @@ Tags src/app/components/app-frame/app-frame.component.html - 183 + 185 src/app/components/app-frame/app-frame.component.html - 186 + 188 src/app/components/common/input/tags/tags.component.ts @@ -3038,11 +3062,11 @@ Document Types src/app/components/app-frame/app-frame.component.html - 192 + 194 src/app/components/app-frame/app-frame.component.html - 194 + 196 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3054,11 +3078,11 @@ Storage Paths src/app/components/app-frame/app-frame.component.html - 199 + 201 src/app/components/app-frame/app-frame.component.html - 201 + 203 src/app/components/dashboard/widgets/statistics-widget/statistics-widget.component.html @@ -3070,11 +3094,11 @@ Custom Fields src/app/components/app-frame/app-frame.component.html - 206 + 208 src/app/components/app-frame/app-frame.component.html - 208 + 210 src/app/components/common/custom-fields-dropdown/custom-fields-dropdown.component.html @@ -3090,11 +3114,11 @@ Workflows src/app/components/app-frame/app-frame.component.html - 222 + 224 src/app/components/app-frame/app-frame.component.html - 224 + 226 src/app/components/manage/workflows/workflows.component.html @@ -3106,11 +3130,11 @@ Mail src/app/components/app-frame/app-frame.component.html - 229 + 231 src/app/components/app-frame/app-frame.component.html - 232 + 234 郵件 @@ -3118,7 +3142,7 @@ Administration src/app/components/app-frame/app-frame.component.html - 247 + 249 系統管理 @@ -3126,11 +3150,11 @@ Configuration src/app/components/app-frame/app-frame.component.html - 260 + 262 src/app/components/app-frame/app-frame.component.html - 262 + 264 系統配置 @@ -3138,7 +3162,7 @@ GitHub src/app/components/app-frame/app-frame.component.html - 307 + 309 GitHub @@ -3146,7 +3170,7 @@ is available. src/app/components/app-frame/app-frame.component.html - 316,317 + 318,319 可供更新。 @@ -3154,7 +3178,7 @@ Click to view. src/app/components/app-frame/app-frame.component.html - 317 + 319 點擊以顯示。 @@ -3162,7 +3186,7 @@ Paperless-ngx can automatically check for updates src/app/components/app-frame/app-frame.component.html - 321 + 323 Paperless-ngx 可以自動檢查更新 @@ -3170,7 +3194,7 @@ How does this work? src/app/components/app-frame/app-frame.component.html - 328,330 + 330,332 這是怎麼運作的? @@ -3178,7 +3202,7 @@ Update available src/app/components/app-frame/app-frame.component.html - 341 + 343 有可用更新 @@ -3186,7 +3210,7 @@ Sidebar views updated src/app/components/app-frame/app-frame.component.ts - 251 + 264 側邊欄顯示方式已更新 @@ -3194,7 +3218,7 @@ Error updating sidebar views src/app/components/app-frame/app-frame.component.ts - 254 + 267 更新側邊欄顯示方式時發生錯誤 @@ -3202,7 +3226,7 @@ An error occurred while saving update checking settings. src/app/components/app-frame/app-frame.component.ts - 275 + 288 儲存檢查更新設定時發生錯誤。 @@ -3270,7 +3294,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 115 + 117 src/app/components/document-list/document-card-large/document-card-large.component.html @@ -3686,11 +3710,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 94 + 95 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 100 + 101 @@ -3702,11 +3726,11 @@ src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 95 + 96 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 101 + 102 @@ -3714,11 +3738,11 @@ Search docs... src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 69 + 70 src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 117 + 118 搜尋文件⋯ @@ -3726,7 +3750,7 @@ Any src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 149 + 150 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3738,7 +3762,7 @@ All src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 151 + 152 src/app/components/common/filterable-dropdown/filterable-dropdown.component.html @@ -3766,7 +3790,7 @@ Not src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 154 + 155 不是 @@ -3774,7 +3798,7 @@ Add query src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 173 + 174 新增查詢 @@ -3782,7 +3806,7 @@ Add expression src/app/components/common/custom-fields-query-dropdown/custom-fields-query-dropdown.component.html - 176 + 177 新增表達式 @@ -3978,7 +4002,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 171 + 173 不區分大小寫 @@ -4450,7 +4474,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 263 + 265 指派文件類型 @@ -4470,7 +4494,7 @@ src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 264 + 266 指派關聯方 @@ -4482,7 +4506,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 @@ -4846,7 +4870,7 @@ src/app/components/document-list/bulk-editor/bulk-editor.component.html - 100 + 101 電子郵件 @@ -4954,7 +4978,7 @@ Create new user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 70 + 72 建立新使用者帳號 @@ -4962,7 +4986,7 @@ Edit user account src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 74 + 76 編輯使用者帳號 @@ -4970,7 +4994,7 @@ Totp deactivated src/app/components/common/edit-dialog/user-edit-dialog/user-edit-dialog.component.ts - 130 + 132 TOTP 已停用 @@ -4978,11 +5002,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 +5070,7 @@ Trigger type src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 121 + 123 觸發基準 @@ -5054,7 +5078,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 +5086,7 @@ Offset days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 128 + 130 調整日期 @@ -5070,7 +5094,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 +5102,7 @@ Relative to src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 137 + 139 基於 @@ -5086,7 +5110,7 @@ Custom field src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 141 + 143 自訂欄位 @@ -5094,7 +5118,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 +5126,7 @@ Recurring src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 重複執行 @@ -5110,7 +5134,7 @@ Trigger is recurring. src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 147 + 149 重複執行觸發器。 @@ -5118,7 +5142,7 @@ Recurring interval days src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 151 + 153 重複執行間隔(天) @@ -5126,7 +5150,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 +5158,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 +5166,7 @@ Filter filename src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 159 + 161 篩選檔案名稱 @@ -5150,7 +5174,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 +5182,7 @@ Filter sources src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 161 + 163 篩選來源 @@ -5166,7 +5190,7 @@ Filter path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 162 + 164 篩選路徑 @@ -5174,7 +5198,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 +5206,7 @@ Filter mail rule src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 163 + 165 篩選郵件規則 @@ -5190,7 +5214,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 +5222,7 @@ Content matching algorithm src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 166 + 168 內容比對演算法 @@ -5206,7 +5230,7 @@ Content matching pattern src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 168 + 170 內容比對模式 @@ -5214,39 +5238,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 +5278,7 @@ Assign title src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 261 + 263 指派標題 @@ -5262,7 +5286,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 +5294,7 @@ Assign tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 262 + 264 指派標籤 @@ -5278,7 +5302,7 @@ Assign storage path src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 265 + 267 指派儲存路徑 @@ -5286,7 +5310,7 @@ Assign custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 266 + 268 指派自訂欄位 @@ -5294,7 +5318,7 @@ Assign owner src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 270 + 272 指派擁有者 @@ -5302,7 +5326,7 @@ Assign view permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 272 + 274 指派檢視權限 @@ -5310,7 +5334,7 @@ Assign edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 291 + 293 指派編輯權限 @@ -5318,7 +5342,7 @@ Remove tags src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 318 + 320 移除標籤 @@ -5326,31 +5350,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 +5382,7 @@ Remove correspondents src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 324 + 326 移除關聯方 @@ -5366,7 +5390,7 @@ Remove document types src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 330 + 332 移除文件類型 @@ -5374,7 +5398,7 @@ Remove storage paths src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 336 + 338 移除儲存路徑 @@ -5382,7 +5406,7 @@ Remove custom fields src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 342 + 344 移除自訂欄位 @@ -5390,7 +5414,7 @@ Remove owners src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 349 + 351 移除擁有者 @@ -5398,7 +5422,7 @@ Remove permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 355 + 357 移除權限 @@ -5406,7 +5430,7 @@ View permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 358 + 360 檢視權限 @@ -5414,7 +5438,7 @@ Edit permissions src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 377 + 379 編輯權限 @@ -5422,7 +5446,7 @@ Email subject src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 405 + 407 電子郵件主旨 @@ -5430,7 +5454,7 @@ Email body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 406 + 408 電子郵件正文 @@ -5438,7 +5462,7 @@ Email recipients src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 407 + 409 電子郵件收件者 @@ -5446,7 +5470,7 @@ Attach document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 408 + 410 附加文件 @@ -5454,7 +5478,7 @@ Webhook url src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 416 + 418 Webhook URL @@ -5462,7 +5486,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 +5494,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 +5502,7 @@ Webhook params src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 422 + 424 Webhook 參數 @@ -5486,7 +5510,7 @@ Webhook body src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 424 + 426 Webhook Body @@ -5494,7 +5518,7 @@ Webhook headers src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 426 + 428 Webhook 標頭 @@ -5502,7 +5526,7 @@ Include document src/app/components/common/edit-dialog/workflow-edit-dialog/workflow-edit-dialog.component.html - 427 + 429 包含文件 @@ -5620,7 +5644,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 +5652,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 +5660,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 +5676,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 +5692,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 +5708,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 +5716,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 +5740,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 +5792,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 +5808,7 @@ src/app/components/common/email-document-dialog/email-document-dialog.component.ts 69 - Error emailing documents + 以電子郵件傳送文件時發生錯誤 Error emailing document @@ -5858,7 +5882,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 +5891,7 @@ Open filter src/app/components/common/filterable-dropdown/filterable-dropdown.component.ts - 562 + 748 開啟 篩選器 @@ -5947,7 +5971,7 @@ src/app/components/common/input/select/select.component.html - 60 + 61 src/app/components/common/input/tags/tags.component.html @@ -6084,11 +6108,11 @@ src/app/components/common/tag/tag.component.html - 14 + 20 src/app/components/common/tag/tag.component.html - 17 + 23 src/app/pipes/object-name.pipe.ts @@ -6620,7 +6644,7 @@ Profile updated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 192 + 193 設定檔更新成功 @@ -6628,7 +6652,7 @@ Error saving profile src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 206 + 207 儲存設定檔時發生錯誤 @@ -6636,7 +6660,7 @@ Error generating auth token src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 223 + 225 產生驗證 Token 時發生錯誤 @@ -6644,7 +6668,7 @@ Error disconnecting social account src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 248 + 250 連接社群帳號時發生錯誤 @@ -6652,7 +6676,7 @@ Error fetching TOTP settings src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 267 + 269 擷取 TOTP 時發生錯誤 @@ -6660,7 +6684,7 @@ TOTP activated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 288 + 290 TOTP 啟用成功 @@ -6668,11 +6692,11 @@ Error activating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 290 + 292 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 296 + 298 啟用 TOTP 時發生錯誤 @@ -6680,7 +6704,7 @@ TOTP deactivated successfully src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 312 + 314 TOTP 停用成功 @@ -6688,11 +6712,11 @@ Error deactivating TOTP src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 314 + 316 src/app/components/common/profile-edit-dialog/profile-edit-dialog.component.ts - 319 + 321 停用 TOTP 時發生錯誤 @@ -8006,7 +8030,7 @@ Print failed. src/app/components/document-detail/document-detail.component.ts - 1455 + 1460 列印失敗。 @@ -8014,7 +8038,7 @@ Error loading document for printing. src/app/components/document-detail/document-detail.component.ts - 1463 + 1472 載入列印文件時發生錯誤 @@ -8022,11 +8046,11 @@ An error occurred loading tiff: src/app/components/document-detail/document-detail.component.ts - 1528 + 1537 src/app/components/document-detail/document-detail.component.ts - 1532 + 1541 讀取 TIFF 檔時發生錯誤: @@ -8146,7 +8170,7 @@ Include: src/app/components/document-list/bulk-editor/bulk-editor.component.html - 121 + 123 包含: @@ -8154,7 +8178,7 @@ Archived files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 125 + 127 封存檔案 @@ -8162,7 +8186,7 @@ Original files src/app/components/document-list/bulk-editor/bulk-editor.component.html - 129 + 131 原始檔案 @@ -8170,7 +8194,7 @@ Use formatted filename src/app/components/document-list/bulk-editor/bulk-editor.component.html - 134 + 136 使用格式化檔案名稱 @@ -8600,7 +8624,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 20 - 開關標籤篩選器 + 開關標籤篩選條件 Toggle correspondent filter @@ -8608,7 +8632,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 43 - 開關關聯方篩選器 + 開關關聯方篩選條件 Toggle document type filter @@ -8616,7 +8640,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 59 - 開關文件類型篩選器 + 開關文件類型篩選條件 Toggle storage path filter @@ -8624,7 +8648,7 @@ src/app/components/document-list/document-card-small/document-card-small.component.html 66 - 開關儲存路徑篩選器 + 開關儲存路徑篩選條件 Select @@ -8670,6 +8694,14 @@ 選取全部 + + Select: + + src/app/components/document-list/document-list.component.html + 18 + + 選取: + None @@ -8686,18 +8718,6 @@ - - Show - - src/app/components/document-list/document-list.component.html - 37 - - - src/app/components/manage/saved-views/saved-views.component.html - 52 - - 顯示 - Sort @@ -8760,7 +8780,7 @@ src/app/components/document-list/document-list.component.html 143 - (已套用篩選器) + (已套用篩選條件) Reset filters @@ -8772,7 +8792,7 @@ src/app/components/document-list/filter-editor/filter-editor.component.html 107 - 重置篩選器 + 重置篩選條件 Error while loading documents @@ -8956,7 +8976,7 @@ src/app/components/document-list/document-list.component.ts 296 - 重置篩選器/選項 + 重置篩條件/選項 Open first [selected] document @@ -9766,7 +9786,7 @@ src/app/components/manage/management-list/management-list.component.ts - 339 + 349 更新權限時發生錯誤 @@ -9906,7 +9926,7 @@ Successfully created . src/app/components/manage/management-list/management-list.component.ts - 192 + 196 成功建立 @@ -9914,7 +9934,7 @@ Error occurred while creating . src/app/components/manage/management-list/management-list.component.ts - 197 + 201 建立時發生錯誤。 @@ -9922,7 +9942,7 @@ Successfully updated "". src/app/components/manage/management-list/management-list.component.ts - 212 + 216 成功更新」。 @@ -9930,7 +9950,7 @@ Error occurred while saving . src/app/components/manage/management-list/management-list.component.ts - 217 + 221 儲存時發生錯誤。 @@ -9938,7 +9958,7 @@ Associated documents will not be deleted. src/app/components/manage/management-list/management-list.component.ts - 237 + 241 相關聯的檔案將不會被刪除。 @@ -9946,7 +9966,7 @@ Error while deleting element src/app/components/manage/management-list/management-list.component.ts - 253 + 257 刪除元素時發生錯誤 @@ -9954,7 +9974,7 @@ Permissions updated successfully src/app/components/manage/management-list/management-list.component.ts - 332 + 342 權限更新成功 @@ -9962,7 +9982,7 @@ This operation will permanently delete all objects. src/app/components/manage/management-list/management-list.component.ts - 353 + 363 將永久刪除全部的項目。 @@ -9970,7 +9990,7 @@ Objects deleted successfully src/app/components/manage/management-list/management-list.component.ts - 367 + 377 項目刪除成功 @@ -9978,7 +9998,7 @@ Error deleting objects src/app/components/manage/management-list/management-list.component.ts - 373 + 383 刪除項目時發生錯誤 diff --git a/src/documents/file_handling.py b/src/documents/file_handling.py index 3a0ffd9fb..48cd57311 100644 --- a/src/documents/file_handling.py +++ b/src/documents/file_handling.py @@ -99,6 +99,29 @@ def generate_unique_filename(doc, *, archive_filename=False) -> Path: return new_filename +def format_filename(document: Document, template_str: str) -> str | None: + rendered_filename = validate_filepath_template_and_render( + template_str, + document, + ) + if rendered_filename is None: + return None + + # Apply this setting. It could become a filter in the future (or users could use |default) + if settings.FILENAME_FORMAT_REMOVE_NONE: + rendered_filename = rendered_filename.replace("/-none-/", "/") + rendered_filename = rendered_filename.replace(" -none-", "") + rendered_filename = rendered_filename.replace("-none-", "") + rendered_filename = rendered_filename.strip(os.sep) + + rendered_filename = rendered_filename.replace( + "-none-", + "none", + ) # backward compatibility + + return rendered_filename + + def generate_filename( doc: Document, *, @@ -108,28 +131,6 @@ def generate_filename( ) -> Path: base_path: Path | None = None - def format_filename(document: Document, template_str: str) -> str | None: - rendered_filename = validate_filepath_template_and_render( - template_str, - document, - ) - if rendered_filename is None: - return None - - # Apply this setting. It could become a filter in the future (or users could use |default) - if settings.FILENAME_FORMAT_REMOVE_NONE: - rendered_filename = rendered_filename.replace("/-none-/", "/") - rendered_filename = rendered_filename.replace(" -none-", "") - rendered_filename = rendered_filename.replace("-none-", "") - rendered_filename = rendered_filename.strip(os.sep) - - rendered_filename = rendered_filename.replace( - "-none-", - "none", - ) # backward compatibility - - return rendered_filename - # Determine the source of the format string if doc.storage_path is not None: filename_format = doc.storage_path.path diff --git a/src/documents/filters.py b/src/documents/filters.py index 87274f9fa..54f3c1fa0 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: @@ -154,6 +160,7 @@ class InboxFilter(Filter): @extend_schema_field(serializers.CharField) class TitleContentFilter(Filter): def filter(self, qs, value): + value = value.strip() if isinstance(value, str) else value if value: return qs.filter(Q(title__icontains=value) | Q(content__icontains=value)) else: @@ -208,6 +215,7 @@ class CustomFieldFilterSet(FilterSet): @extend_schema_field(serializers.CharField) class CustomFieldsFilter(Filter): def filter(self, qs, value): + value = value.strip() if isinstance(value, str) else value if value: fields_with_matching_selects = CustomField.objects.filter( extra_data__icontains=value, @@ -238,6 +246,7 @@ class CustomFieldsFilter(Filter): class MimeTypeFilter(Filter): def filter(self, qs, value): + value = value.strip() if isinstance(value, str) else value if value: return qs.filter(mime_type__icontains=value) else: diff --git a/src/documents/index.py b/src/documents/index.py index 90cbb8000..9446c7db1 100644 --- a/src/documents/index.py +++ b/src/documents/index.py @@ -287,15 +287,75 @@ class DelayedQuery: self.first_score = None self.filter_queryset = filter_queryset self.suggested_correction = None + self._manual_hits_cache: list | None = None def __len__(self) -> int: + if self._manual_sort_requested(): + manual_hits = self._manual_hits() + return len(manual_hits) + page = self[0:1] return len(page) + def _manual_sort_requested(self): + ordering = self.query_params.get("ordering", "") + return ordering.lstrip("-").startswith("custom_field_") + + def _manual_hits(self): + if self._manual_hits_cache is None: + q, mask, suggested_correction = self._get_query() + self.suggested_correction = suggested_correction + + results = self.searcher.search( + q, + mask=mask, + filter=MappedDocIdSet(self.filter_queryset, self.searcher.ixreader), + limit=None, + ) + results.fragmenter = highlight.ContextFragmenter(surround=50) + results.formatter = HtmlFormatter(tagname="span", between=" ... ") + + if not self.first_score and len(results) > 0: + self.first_score = results[0].score + + if self.first_score: + results.top_n = [ + ( + (hit[0] / self.first_score) if self.first_score else None, + hit[1], + ) + for hit in results.top_n + ] + + hits_by_id = {hit["id"]: hit for hit in results} + matching_ids = list(hits_by_id.keys()) + + ordered_ids = list( + self.filter_queryset.filter(id__in=matching_ids).values_list( + "id", + flat=True, + ), + ) + ordered_ids = list(dict.fromkeys(ordered_ids)) + + self._manual_hits_cache = [ + hits_by_id[_id] for _id in ordered_ids if _id in hits_by_id + ] + return self._manual_hits_cache + def __getitem__(self, item): if item.start in self.saved_results: return self.saved_results[item.start] + if self._manual_sort_requested(): + manual_hits = self._manual_hits() + start = 0 if item.start is None else item.start + stop = item.stop + hits = manual_hits[start:stop] if stop is not None else manual_hits[start:] + page = ManualResultsPage(hits) + self.saved_results[start] = page + return page + q, mask, suggested_correction = self._get_query() self.suggested_correction = suggested_correction sortedby, reverse = self._get_query_sortedby() @@ -315,21 +375,33 @@ class DelayedQuery: if not self.first_score and len(page.results) > 0 and sortedby is None: self.first_score = page.results[0].score - page.results.top_n = list( - map( - lambda hit: ( - (hit[0] / self.first_score) if self.first_score else None, - hit[1], - ), - page.results.top_n, - ), - ) + page.results.top_n = [ + ( + (hit[0] / self.first_score) if self.first_score else None, + hit[1], + ) + for hit in page.results.top_n + ] self.saved_results[item.start] = page return page +class ManualResultsPage(list): + def __init__(self, hits): + super().__init__(hits) + self.results = ManualResults(hits) + + +class ManualResults: + def __init__(self, hits): + self._docnums = [hit.docnum for hit in hits] + + def docs(self): + return self._docnums + + class LocalDateParser(English): def reverse_timezone_offset(self, d): return (d.replace(tzinfo=django_timezone.get_current_timezone())).astimezone( diff --git a/src/documents/mail.py b/src/documents/mail.py index 240b41e18..21bf03c7a 100644 --- a/src/documents/mail.py +++ b/src/documents/mail.py @@ -1,23 +1,26 @@ from __future__ import annotations +from dataclasses import dataclass from email import message_from_bytes -from typing import TYPE_CHECKING +from pathlib import Path from django.conf import settings from django.core.mail import EmailMessage from filelock import FileLock -if TYPE_CHECKING: - from documents.models import Document + +@dataclass(frozen=True) +class EmailAttachment: + path: Path + mime_type: str + friendly_name: str def send_email( subject: str, body: str, to: list[str], - attachments: list[Document], - *, - use_archive: bool, + attachments: list[EmailAttachment], ) -> int: """ Send an email with attachments. @@ -26,8 +29,7 @@ def send_email( subject: Email subject body: Email body text to: List of recipient email addresses - attachments: List of documents to attach (the list may be empty) - use_archive: Whether to attach archive versions when available + attachments: List of attachments Returns: Number of emails sent @@ -44,44 +46,41 @@ def send_email( # Something could be renaming the file concurrently so it can't be attached with FileLock(settings.MEDIA_LOCK): - for document in attachments: - attachment_path = ( - document.archive_path - if use_archive and document.has_archive_version - else document.source_path - ) - - friendly_filename = _get_unique_filename( - document, + for attachment in attachments: + filename = _get_unique_filename( + attachment.friendly_name, used_filenames, - archive=use_archive and document.has_archive_version, ) - used_filenames.add(friendly_filename) + used_filenames.add(filename) - with attachment_path.open("rb") as f: + with attachment.path.open("rb") as f: content = f.read() - if document.mime_type == "message/rfc822": + if attachment.mime_type == "message/rfc822": # See https://forum.djangoproject.com/t/using-emailmessage-with-an-attached-email-file-crashes-due-to-non-ascii/37981 content = message_from_bytes(content) email.attach( - filename=friendly_filename, + filename=filename, content=content, - mimetype=document.mime_type, + mimetype=attachment.mime_type, ) return email.send() -def _get_unique_filename(doc: Document, used_names: set[str], *, archive: bool) -> str: +def _get_unique_filename(friendly_name: str, used_names: set[str]) -> str: """ - Constructs a unique friendly filename for the given document. + Constructs a unique friendly filename for the given document, append a counter if needed. + """ + if friendly_name not in used_names: + return friendly_name - The filename might not be unique enough, so a counter is appended if needed. - """ - counter = 0 + stem = Path(friendly_name).stem + suffix = "".join(Path(friendly_name).suffixes) + + counter = 1 while True: - filename = doc.get_public_filename(archive=archive, counter=counter) + filename = f"{stem}_{counter:02}{suffix}" if filename not in used_names: return filename counter += 1 diff --git a/src/documents/management/commands/document_importer.py b/src/documents/management/commands/document_importer.py index 282f5c48e..3e614c6a6 100644 --- a/src/documents/management/commands/document_importer.py +++ b/src/documents/management/commands/document_importer.py @@ -48,12 +48,13 @@ if settings.AUDIT_LOG_ENABLED: @contextmanager -def disable_signal(sig, receiver, sender) -> Generator: +def disable_signal(sig, receiver, sender, *, weak: bool | None = None) -> Generator: try: sig.disconnect(receiver=receiver, sender=sender) yield finally: - sig.connect(receiver=receiver, sender=sender) + kwargs = {"weak": weak} if weak is not None else {} + sig.connect(receiver=receiver, sender=sender, **kwargs) class Command(CryptMixin, BaseCommand): @@ -258,16 +259,19 @@ class Command(CryptMixin, BaseCommand): post_save, receiver=update_filename_and_move_files, sender=Document, + weak=False, ), disable_signal( m2m_changed, receiver=update_filename_and_move_files, sender=Document.tags.through, + weak=False, ), disable_signal( post_save, receiver=update_filename_and_move_files, sender=CustomFieldInstance, + weak=False, ), disable_signal( post_save, diff --git a/src/documents/migrations/1073_migrate_workflow_title_jinja.py b/src/documents/migrations/1073_migrate_workflow_title_jinja.py index 3f5689629..9d80a277f 100644 --- a/src/documents/migrations/1073_migrate_workflow_title_jinja.py +++ b/src/documents/migrations/1073_migrate_workflow_title_jinja.py @@ -3,7 +3,6 @@ import logging from django.db import migrations from django.db import models -from django.db import transaction from documents.templating.utils import convert_format_str_to_template_format @@ -11,21 +10,34 @@ logger = logging.getLogger("paperless.migrations") def convert_from_format_to_template(apps, schema_editor): - WorkflowActions = apps.get_model("documents", "WorkflowAction") + WorkflowAction = apps.get_model("documents", "WorkflowAction") - with transaction.atomic(): - for WorkflowAction in WorkflowActions.objects.all(): - if not WorkflowAction.assign_title: - continue - WorkflowAction.assign_title = convert_format_str_to_template_format( - WorkflowAction.assign_title, - ) - logger.debug( - "Converted WorkflowAction id %d title to template format: %s", - WorkflowAction.id, - WorkflowAction.assign_title, - ) - WorkflowAction.save() + batch_size = 500 + actions_to_update = [] + + queryset = ( + WorkflowAction.objects.filter(assign_title__isnull=False) + .exclude(assign_title="") + .only("id", "assign_title") + ) + + for action in queryset: + action.assign_title = convert_format_str_to_template_format( + action.assign_title, + ) + logger.debug( + "Converted WorkflowAction id %d title to template format: %s", + action.id, + action.assign_title, + ) + actions_to_update.append(action) + + if actions_to_update: + WorkflowAction.objects.bulk_update( + actions_to_update, + ["assign_title"], + batch_size=batch_size, + ) class Migration(migrations.Migration): @@ -35,15 +47,13 @@ class Migration(migrations.Migration): operations = [ migrations.AlterField( - model_name="WorkflowAction", + model_name="workflowaction", name="assign_title", field=models.TextField( - null=True, blank=True, - help_text=( - "Assign a document title, can be a JINJA2 template, " - "see documentation.", - ), + help_text="Assign a document title, must be a Jinja2 template, see documentation.", + null=True, + verbose_name="assign title", ), ), migrations.RunPython( diff --git a/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py b/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py new file mode 100644 index 000000000..4381eabb1 --- /dev/null +++ b/src/documents/migrations/1074_workflowrun_deleted_at_workflowrun_restored_at_and_more.py @@ -0,0 +1,28 @@ +# Generated by Django 5.2.6 on 2025-10-27 15:11 + +from django.db import migrations +from django.db import models + + +class Migration(migrations.Migration): + dependencies = [ + ("documents", "1073_migrate_workflow_title_jinja"), + ] + + operations = [ + migrations.AddField( + model_name="workflowrun", + name="deleted_at", + field=models.DateTimeField(blank=True, null=True), + ), + migrations.AddField( + model_name="workflowrun", + name="restored_at", + field=models.DateTimeField(blank=True, null=True), + ), + migrations.AddField( + model_name="workflowrun", + name="transaction_id", + field=models.UUIDField(blank=True, null=True), + ), + ] diff --git a/src/documents/models.py b/src/documents/models.py index 4794bc82f..12dab2b6d 100644 --- a/src/documents/models.py +++ b/src/documents/models.py @@ -1547,7 +1547,7 @@ class Workflow(models.Model): return f"Workflow: {self.name}" -class WorkflowRun(models.Model): +class WorkflowRun(SoftDeleteModel): workflow = models.ForeignKey( Workflow, on_delete=models.CASCADE, 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/serialisers.py b/src/documents/serialisers.py index 25207bdfa..f04bb70da 100644 --- a/src/documents/serialisers.py +++ b/src/documents/serialisers.py @@ -1041,7 +1041,7 @@ class DocumentSerializer( request.version if request else settings.REST_FRAMEWORK["DEFAULT_VERSION"], ) - if api_version < 9: + if api_version < 9 and "created" in self.fields: # provide created as a datetime for backwards compatibility from django.utils import timezone diff --git a/src/documents/signals/handlers.py b/src/documents/signals/handlers.py index 8862b064b..bce376f76 100644 --- a/src/documents/signals/handlers.py +++ b/src/documents/signals/handlers.py @@ -34,6 +34,7 @@ from documents.caching import clear_document_caches from documents.file_handling import create_source_path_directory from documents.file_handling import delete_empty_directories from documents.file_handling import generate_unique_filename +from documents.mail import EmailAttachment from documents.mail import send_email from documents.models import Correspondent from documents.models import CustomField @@ -392,9 +393,9 @@ class CannotMoveFilesException(Exception): # should be disabled in /src/documents/management/commands/document_importer.py handle -@receiver(models.signals.post_save, sender=CustomFieldInstance) -@receiver(models.signals.m2m_changed, sender=Document.tags.through) -@receiver(models.signals.post_save, sender=Document) +@receiver(models.signals.post_save, sender=CustomFieldInstance, weak=False) +@receiver(models.signals.m2m_changed, sender=Document.tags.through, weak=False) +@receiver(models.signals.post_save, sender=Document, weak=False) def update_filename_and_move_files( sender, instance: Document | CustomFieldInstance, @@ -1094,7 +1095,9 @@ def run_workflows( if not use_overrides: title = document.title - doc_url = f"{settings.PAPERLESS_URL}/documents/{document.pk}/" + doc_url = ( + f"{settings.PAPERLESS_URL}{settings.BASE_URL}documents/{document.pk}/" + ) correspondent = ( document.correspondent.name if document.correspondent else "" ) @@ -1162,15 +1165,41 @@ def run_workflows( else "" ) try: - attachments = [] - if action.email.include_document and original_file: - attachments = [document] + attachments: list[EmailAttachment] = [] + if action.email.include_document: + attachment: EmailAttachment | None = None + if trigger_type in [ + WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED, + WorkflowTrigger.WorkflowTriggerType.SCHEDULED, + ] and isinstance(document, Document): + friendly_name = ( + Path(current_filename).name + if current_filename + else document.source_path.name + ) + attachment = EmailAttachment( + path=document.source_path, + mime_type=document.mime_type, + friendly_name=friendly_name, + ) + elif original_file: + friendly_name = ( + Path(current_filename).name + if current_filename + else original_file.name + ) + attachment = EmailAttachment( + path=original_file, + mime_type=document.mime_type, + friendly_name=friendly_name, + ) + if attachment: + attachments = [attachment] n_messages = send_email( subject=subject, body=body, to=action.email.to.split(","), attachments=attachments, - use_archive=False, ) logger.debug( f"Sent {n_messages} notification email(s) to {action.email.to}", @@ -1185,7 +1214,9 @@ def run_workflows( def webhook_action(): if not use_overrides: title = document.title - doc_url = f"{settings.PAPERLESS_URL}/documents/{document.pk}/" + doc_url = ( + f"{settings.PAPERLESS_URL}{settings.BASE_URL}documents/{document.pk}/" + ) correspondent = ( document.correspondent.name if document.correspondent else "" ) diff --git a/src/documents/templating/filepath.py b/src/documents/templating/filepath.py index 00de8de2c..7d76e7f31 100644 --- a/src/documents/templating/filepath.py +++ b/src/documents/templating/filepath.py @@ -52,6 +52,33 @@ class FilePathTemplate(Template): return clean_filepath(original_render) +class PlaceholderString(str): + """ + String subclass used as a sentinel for empty metadata values inside templates. + + - Renders as \"-none-\" to preserve existing filename cleaning logic. + - Compares equal to either \"-none-\" or \"none\" so templates can check for either. + - Evaluates to False so {% if correspondent %} behaves intuitively. + """ + + def __new__(cls, value: str = "-none-"): + return super().__new__(cls, value) + + def __bool__(self) -> bool: + return False + + def __eq__(self, other) -> bool: + if isinstance(other, str) and other == "none": + other = "-none-" + return super().__eq__(other) + + def __ne__(self, other) -> bool: + return not self.__eq__(other) + + +NO_VALUE_PLACEHOLDER = PlaceholderString("-none-") + + _template_environment.undefined = _LogStrictUndefined _template_environment.filters["get_cf_value"] = get_cf_value @@ -128,7 +155,7 @@ def get_added_date_context(document: Document) -> dict[str, str]: def get_basic_metadata_context( document: Document, *, - no_value_default: str, + no_value_default: str = NO_VALUE_PLACEHOLDER, ) -> dict[str, str]: """ Given a Document, constructs some basic information about it. If certain values are not set, @@ -266,7 +293,7 @@ def validate_filepath_template_and_render( # Build the context dictionary context = ( {"document": document} - | get_basic_metadata_context(document, no_value_default="-none-") + | get_basic_metadata_context(document, no_value_default=NO_VALUE_PLACEHOLDER) | get_creation_date_context(document) | get_added_date_context(document) | get_tags_context(tags_list) diff --git a/src/documents/templating/workflows.py b/src/documents/templating/workflows.py index 25f1e57ef..67f3ac930 100644 --- a/src/documents/templating/workflows.py +++ b/src/documents/templating/workflows.py @@ -80,7 +80,7 @@ def parse_w_workflow_placeholders( if doc_url is not None: formatting.update({"doc_url": doc_url}) - logger.debug(f"Jinja Template is : {text}") + logger.debug(f"Parsing Workflow Jinja template: {text}") try: template = _template_environment.from_string( text, diff --git a/src/documents/tests/test_admin.py b/src/documents/tests/test_admin.py index 278014f7c..61a579dc7 100644 --- a/src/documents/tests/test_admin.py +++ b/src/documents/tests/test_admin.py @@ -2,9 +2,11 @@ import types from unittest.mock import patch from django.contrib.admin.sites import AdminSite +from django.contrib.auth.models import Permission from django.contrib.auth.models import User from django.test import TestCase from django.utils import timezone +from rest_framework import status from documents import index from documents.admin import DocumentAdmin @@ -125,3 +127,36 @@ class TestPaperlessAdmin(DirectoriesMixin, TestCase): form.request = types.SimpleNamespace(user=superuser) self.assertTrue(form.is_valid()) self.assertEqual({}, form.errors) + + def test_superuser_can_only_be_modified_by_superuser(self): + superuser = User.objects.create_superuser(username="superuser", password="test") + user = User.objects.create( + username="test", + is_superuser=False, + is_staff=True, + ) + change_user_perm = Permission.objects.get(codename="change_user") + user.user_permissions.add(change_user_perm) + + self.client.force_login(user) + response = self.client.patch( + f"/api/users/{superuser.pk}/", + {"first_name": "Updated"}, + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_403_FORBIDDEN) + self.assertEqual( + response.content.decode(), + "Superusers can only be modified by other superusers", + ) + + self.client.logout() + self.client.force_login(superuser) + response = self.client.patch( + f"/api/users/{superuser.pk}/", + {"first_name": "Updated"}, + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + superuser.refresh_from_db() + self.assertEqual(superuser.first_name, "Updated") diff --git a/src/documents/tests/test_api_documents.py b/src/documents/tests/test_api_documents.py index 3f7b2c385..87190c23b 100644 --- a/src/documents/tests/test_api_documents.py +++ b/src/documents/tests/test_api_documents.py @@ -172,6 +172,35 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): results = response.data["results"] self.assertEqual(len(results[0]), 0) + def test_document_fields_api_version_8_respects_created(self): + Document.objects.create( + title="legacy", + checksum="123", + mime_type="application/pdf", + created=date(2024, 1, 15), + ) + + response = self.client.get( + "/api/documents/?fields=id", + headers={"Accept": "application/json; version=8"}, + format="json", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + results = response.data["results"] + self.assertIn("id", results[0]) + self.assertNotIn("created", results[0]) + + response = self.client.get( + "/api/documents/?fields=id,created", + headers={"Accept": "application/json; version=8"}, + format="json", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + results = response.data["results"] + self.assertIn("id", results[0]) + self.assertIn("created", results[0]) + self.assertRegex(results[0]["created"], r"^2024-01-15T00:00:00.*$") + def test_document_legacy_created_format(self): """ GIVEN: @@ -912,6 +941,23 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): results = response.data["results"] self.assertEqual(len(results), 0) + def test_documents_title_content_filter_strips_boundary_whitespace(self): + doc = Document.objects.create( + title="Testwort", + content="", + checksum="A", + mime_type="application/pdf", + ) + + response = self.client.get( + "/api/documents/", + {"title_content": " Testwort "}, + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + results = response.data["results"] + self.assertEqual(len(results), 1) + self.assertEqual(results[0]["id"], doc.id) + def test_document_permissions_filters(self): """ GIVEN: @@ -2250,6 +2296,23 @@ class TestDocumentApi(DirectoriesMixin, DocumentConsumeDelayMixin, APITestCase): self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertListEqual(response.data, ["test", "test2"]) + def test_get_log_with_limit(self): + log_data = "test1\ntest2\ntest3\n" + with (Path(settings.LOGGING_DIR) / "paperless.log").open("w") as f: + f.write(log_data) + response = self.client.get("/api/logs/paperless/", {"limit": 2}) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertListEqual(response.data, ["test2", "test3"]) + + def test_get_log_with_invalid_limit(self): + log_data = "test1\ntest2\n" + with (Path(settings.LOGGING_DIR) / "paperless.log").open("w") as f: + f.write(log_data) + response = self.client.get("/api/logs/paperless/", {"limit": "abc"}) + self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) + response = self.client.get("/api/logs/paperless/", {"limit": -5}) + self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) + def test_invalid_regex_other_algorithm(self): for endpoint in ["correspondents", "tags", "document_types"]: response = self.client.post( 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_api_objects.py b/src/documents/tests/test_api_objects.py index bba9031db..014dd3c2a 100644 --- a/src/documents/tests/test_api_objects.py +++ b/src/documents/tests/test_api_objects.py @@ -4,6 +4,7 @@ from unittest import mock from django.contrib.auth.models import Permission from django.contrib.auth.models import User +from django.test import override_settings from rest_framework import status from rest_framework.test import APITestCase @@ -334,6 +335,45 @@ class TestApiStoragePaths(DirectoriesMixin, APITestCase): self.assertEqual(response.status_code, status.HTTP_200_OK) self.assertEqual(response.data, "path/Something") + def test_test_storage_path_respects_none_placeholder_setting(self): + """ + GIVEN: + - A storage path template referencing an empty field + WHEN: + - Testing the template before and after enabling remove-none + THEN: + - The preview shows "none" by default and drops the placeholder when configured + """ + document = Document.objects.create( + mime_type="application/pdf", + storage_path=self.sp1, + title="Something", + checksum="123", + ) + payload = json.dumps( + { + "document": document.id, + "path": "folder/{{ correspondent }}/{{ title }}", + }, + ) + + response = self.client.post( + f"{self.ENDPOINT}test/", + payload, + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual(response.data, "folder/none/Something") + + with override_settings(FILENAME_FORMAT_REMOVE_NONE=True): + response = self.client.post( + f"{self.ENDPOINT}test/", + payload, + content_type="application/json", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual(response.data, "folder/Something") + class TestBulkEditObjects(APITestCase): # See test_api_permissions.py for bulk tests on permissions diff --git a/src/documents/tests/test_api_permissions.py b/src/documents/tests/test_api_permissions.py index 8ffce1f95..bc81dabe9 100644 --- a/src/documents/tests/test_api_permissions.py +++ b/src/documents/tests/test_api_permissions.py @@ -648,7 +648,7 @@ class TestApiUser(DirectoriesMixin, APITestCase): user1 = { "username": "testuser", - "password": "test", + "password": "areallysupersecretpassword235", "first_name": "Test", "last_name": "User", } @@ -730,7 +730,7 @@ class TestApiUser(DirectoriesMixin, APITestCase): f"{self.ENDPOINT}{user1.pk}/", data={ "first_name": "Updated Name 2", - "password": "123xyz", + "password": "newreallystrongpassword456", }, ) diff --git a/src/documents/tests/test_api_profile.py b/src/documents/tests/test_api_profile.py index 8475459a2..2eedf3297 100644 --- a/src/documents/tests/test_api_profile.py +++ b/src/documents/tests/test_api_profile.py @@ -192,6 +192,65 @@ class TestApiProfile(DirectoriesMixin, APITestCase): self.assertEqual(user.first_name, user_data["first_name"]) self.assertEqual(user.last_name, user_data["last_name"]) + def test_update_profile_invalid_password_returns_field_error(self): + """ + GIVEN: + - Configured user + WHEN: + - API call is made to update profile with weak password + THEN: + - Profile update fails with password field error + """ + + user_data = { + "email": "new@email.com", + "password": "short", # shorter than default validator threshold + "first_name": "new first name", + "last_name": "new last name", + } + + response = self.client.patch(self.ENDPOINT, user_data) + + self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST) + self.assertIn("password", response.data) + self.assertIsInstance(response.data["password"], list) + self.assertTrue( + any( + "too short" in message.lower() for message in response.data["password"] + ), + ) + + def test_update_profile_placeholder_password_skips_validation(self): + """ + GIVEN: + - Configured user with existing password + WHEN: + - API call is made with the obfuscated placeholder password value + THEN: + - Profile is updated without changing the password or running validators + """ + + original_password = "orig-pass-12345" + self.user.set_password(original_password) + self.user.save() + + user_data = { + "email": "new@email.com", + "password": "*" * 12, # matches obfuscated value from serializer + "first_name": "new first name", + "last_name": "new last name", + } + + response = self.client.patch(self.ENDPOINT, user_data) + + self.assertEqual(response.status_code, status.HTTP_200_OK) + + user = User.objects.get(username=self.user.username) + self.assertTrue(user.check_password(original_password)) + self.assertEqual(user.email, user_data["email"]) + self.assertEqual(user.first_name, user_data["first_name"]) + self.assertEqual(user.last_name, user_data["last_name"]) + def test_update_auth_token(self): """ GIVEN: diff --git a/src/documents/tests/test_api_remote_version.py b/src/documents/tests/test_api_remote_version.py index 721d29424..9ade7d2c3 100644 --- a/src/documents/tests/test_api_remote_version.py +++ b/src/documents/tests/test_api_remote_version.py @@ -1,3 +1,4 @@ +from django.core.cache import cache from pytest_httpx import HTTPXMock from rest_framework import status from rest_framework.test import APIClient @@ -8,6 +9,9 @@ from paperless import version class TestApiRemoteVersion: ENDPOINT = "/api/remote_version/" + def setup_method(self): + cache.clear() + def test_remote_version_enabled_no_update_prefix( self, rest_api_client: APIClient, diff --git a/src/documents/tests/test_api_search.py b/src/documents/tests/test_api_search.py index 8f316c145..5a2fc9b52 100644 --- a/src/documents/tests/test_api_search.py +++ b/src/documents/tests/test_api_search.py @@ -89,6 +89,65 @@ class TestDocumentSearchApi(DirectoriesMixin, APITestCase): self.assertEqual(len(results), 0) self.assertCountEqual(response.data["all"], []) + def test_search_custom_field_ordering(self): + custom_field = CustomField.objects.create( + name="Sortable field", + data_type=CustomField.FieldDataType.INT, + ) + d1 = Document.objects.create( + title="first", + content="match", + checksum="A1", + ) + d2 = Document.objects.create( + title="second", + content="match", + checksum="B2", + ) + d3 = Document.objects.create( + title="third", + content="match", + checksum="C3", + ) + CustomFieldInstance.objects.create( + document=d1, + field=custom_field, + value_int=30, + ) + CustomFieldInstance.objects.create( + document=d2, + field=custom_field, + value_int=10, + ) + CustomFieldInstance.objects.create( + document=d3, + field=custom_field, + value_int=20, + ) + + with AsyncWriter(index.open_index()) as writer: + index.update_document(writer, d1) + index.update_document(writer, d2) + index.update_document(writer, d3) + + response = self.client.get( + f"/api/documents/?query=match&ordering=custom_field_{custom_field.pk}", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual( + [doc["id"] for doc in response.data["results"]], + [d2.id, d3.id, d1.id], + ) + + response = self.client.get( + f"/api/documents/?query=match&ordering=-custom_field_{custom_field.pk}", + ) + self.assertEqual(response.status_code, status.HTTP_200_OK) + self.assertEqual( + [doc["id"] for doc in response.data["results"]], + [d1.id, d3.id, d2.id], + ) + def test_search_multi_page(self): with AsyncWriter(index.open_index()) as writer: for i in range(55): diff --git a/src/documents/tests/test_file_handling.py b/src/documents/tests/test_file_handling.py index 62ca52d71..c0070aa81 100644 --- a/src/documents/tests/test_file_handling.py +++ b/src/documents/tests/test_file_handling.py @@ -1078,6 +1078,47 @@ class TestFilenameGeneration(DirectoriesMixin, TestCase): Path("SomeImportantNone/2020-07-25.pdf"), ) + @override_settings( + FILENAME_FORMAT=( + "{% if correspondent == 'none' %}none/{% endif %}" + "{% if correspondent == '-none-' %}dash/{% endif %}" + "{% if not correspondent %}false/{% endif %}" + "{% if correspondent != 'none' %}notnoneyes/{% else %}notnoneno/{% endif %}" + "{{ correspondent or 'missing' }}/{{ title }}" + ), + ) + def test_placeholder_matches_none_variants_and_false(self): + """ + GIVEN: + - Templates that compare against 'none', '-none-' and rely on truthiness + WHEN: + - A document has or lacks a correspondent + THEN: + - Empty placeholders behave like both strings and evaluate False + """ + doc_without_correspondent = Document.objects.create( + title="does not matter", + mime_type="application/pdf", + checksum="abc", + ) + doc_with_correspondent = Document.objects.create( + title="does not matter", + mime_type="application/pdf", + checksum="def", + correspondent=Correspondent.objects.create(name="Acme"), + ) + + self.assertEqual( + generate_filename(doc_without_correspondent), + Path( + "none/dash/false/notnoneno/missing/does not matter.pdf", + ), + ) + self.assertEqual( + generate_filename(doc_with_correspondent), + Path("notnoneyes/Acme/does not matter.pdf"), + ) + @override_settings( FILENAME_FORMAT="{created_year_short}/{created_month_name_short}/{created_month_name}/{title}", ) 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/tests/test_workflows.py b/src/documents/tests/test_workflows.py index a6da01578..6438e4b10 100644 --- a/src/documents/tests/test_workflows.py +++ b/src/documents/tests/test_workflows.py @@ -8,8 +8,10 @@ from typing import TYPE_CHECKING from unittest import mock import pytest +from django.conf import settings from django.contrib.auth.models import Group from django.contrib.auth.models import User +from django.core import mail from django.test import override_settings from django.utils import timezone from guardian.shortcuts import assign_perm @@ -21,6 +23,8 @@ from pytest_httpx import HTTPXMock from rest_framework.test import APIClient from rest_framework.test import APITestCase +from documents.file_handling import create_source_path_directory +from documents.file_handling import generate_unique_filename from documents.signals.handlers import run_workflows from documents.signals.handlers import send_webhook @@ -30,6 +34,7 @@ from pytest_django.fixtures import SettingsWrapper from documents import tasks from documents.data_models import ConsumableDocument +from documents.data_models import DocumentMetadataOverrides from documents.data_models import DocumentSource from documents.matching import document_matches_workflow from documents.matching import existing_document_matches_workflow @@ -2788,6 +2793,80 @@ class TestWorkflows( self.assertEqual(doc.tags.all().count(), 1) self.assertIn(self.t2, doc.tags.all()) + @override_settings( + PAPERLESS_EMAIL_HOST="localhost", + EMAIL_ENABLED=True, + PAPERLESS_URL="http://localhost:8000", + ) + @mock.patch("django.core.mail.message.EmailMessage.send") + def test_workflow_assignment_then_email_includes_attachment(self, mock_email_send): + """ + GIVEN: + - Workflow with assignment and email actions + - Email action configured to include the document + WHEN: + - Workflow is run on a newly created document + THEN: + - Email action sends the document as an attachment + """ + + storage_path = StoragePath.objects.create( + name="sp2", + path="workflow/{{ document.pk }}", + ) + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + ) + assignment_action = WorkflowAction.objects.create( + type=WorkflowAction.WorkflowActionType.ASSIGNMENT, + assign_storage_path=storage_path, + assign_owner=self.user2, + ) + assignment_action.assign_tags.add(self.t1) + + email_action_config = WorkflowActionEmail.objects.create( + subject="Doc ready {doc_title}", + body="Document URL: {doc_url}", + to="owner@example.com", + include_document=True, + ) + email_action = WorkflowAction.objects.create( + type=WorkflowAction.WorkflowActionType.EMAIL, + email=email_action_config, + ) + + workflow = Workflow.objects.create(name="Assignment then email", order=0) + workflow.triggers.add(trigger) + workflow.actions.set([assignment_action, email_action]) + + temp_working_copy = shutil.copy( + self.SAMPLE_DIR / "simple.pdf", + self.dirs.scratch_dir / "working-copy.pdf", + ) + + Document.objects.create( + title="workflow doc", + correspondent=self.c, + checksum="wf-assignment-email", + mime_type="application/pdf", + ) + + consumable_document = ConsumableDocument( + source=DocumentSource.ConsumeFolder, + original_file=temp_working_copy, + ) + + mock_email_send.return_value = 1 + + with self.assertNoLogs("paperless.handlers", level="ERROR"): + run_workflows( + WorkflowTrigger.WorkflowTriggerType.CONSUMPTION, + consumable_document, + overrides=DocumentMetadataOverrides(), + ) + + mock_email_send.assert_called_once() + @override_settings( PAPERLESS_EMAIL_HOST="localhost", EMAIL_ENABLED=True, @@ -2914,6 +2993,70 @@ class TestWorkflows( mock_email_send.assert_called_once() + @override_settings( + PAPERLESS_EMAIL_HOST="localhost", + EMAIL_ENABLED=True, + PAPERLESS_URL="http://localhost:8000", + EMAIL_BACKEND="django.core.mail.backends.locmem.EmailBackend", + ) + def test_workflow_email_attachment_uses_storage_filename(self): + """ + GIVEN: + - Document updated workflow with include document action + - Document stored with formatted storage-path filename + WHEN: + - Workflow sends an email + THEN: + - Attachment filename matches the stored filename + """ + + trigger = WorkflowTrigger.objects.create( + type=WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED, + ) + email_action = WorkflowActionEmail.objects.create( + subject="Test Notification: {doc_title}", + body="Test message: {doc_url}", + to="me@example.com", + include_document=True, + ) + action = WorkflowAction.objects.create( + type=WorkflowAction.WorkflowActionType.EMAIL, + email=email_action, + ) + workflow = Workflow.objects.create( + name="Workflow attachment filename", + order=0, + ) + workflow.triggers.add(trigger) + workflow.actions.add(action) + workflow.save() + + storage_path = StoragePath.objects.create( + name="Fancy Path", + path="formatted/{{ document.pk }}/{{ title }}", + ) + doc = Document.objects.create( + title="workflow doc", + correspondent=self.c, + checksum="workflow-email-attachment", + mime_type="application/pdf", + storage_path=storage_path, + original_filename="workflow-orig.pdf", + ) + + # eg what happens in update_filename_and_move_files + generated = generate_unique_filename(doc) + destination = (settings.ORIGINALS_DIR / generated).resolve() + create_source_path_directory(destination) + shutil.copy(self.SAMPLE_DIR / "simple.pdf", destination) + Document.objects.filter(pk=doc.pk).update(filename=generated.as_posix()) + + run_workflows(WorkflowTrigger.WorkflowTriggerType.DOCUMENT_UPDATED, doc) + + self.assertEqual(len(mail.outbox), 1) + attachment_names = [att[0] for att in mail.outbox[0].attachments] + self.assertEqual(attachment_names, [Path(generated).name]) + @override_settings( EMAIL_ENABLED=False, ) @@ -3069,6 +3212,8 @@ class TestWorkflows( @override_settings( PAPERLESS_URL="http://localhost:8000", + PAPERLESS_FORCE_SCRIPT_NAME="/paperless", + BASE_URL="/paperless/", ) @mock.patch("documents.signals.handlers.send_webhook.delay") def test_workflow_webhook_action_body(self, mock_post): @@ -3120,7 +3265,7 @@ class TestWorkflows( mock_post.assert_called_once_with( url="http://paperless-ngx.com", - data=f"Test message: http://localhost:8000/documents/{doc.id}/", + data=f"Test message: http://localhost:8000/paperless/documents/{doc.id}/", headers={}, files=None, as_json=False, diff --git a/src/documents/views.py b/src/documents/views.py index 696311a7a..ba265926c 100644 --- a/src/documents/views.py +++ b/src/documents/views.py @@ -6,6 +6,7 @@ import re import tempfile import zipfile from collections import defaultdict +from collections import deque from datetime import datetime from pathlib import Path from time import mktime @@ -22,6 +23,7 @@ from django.conf import settings from django.contrib.auth.models import Group from django.contrib.auth.models import User from django.contrib.contenttypes.models import ContentType +from django.core.cache import cache from django.db import connections from django.db.migrations.loader import MigrationLoader from django.db.migrations.recorder import MigrationRecorder @@ -69,6 +71,7 @@ from rest_framework import parsers from rest_framework import serializers from rest_framework.decorators import action from rest_framework.exceptions import NotFound +from rest_framework.exceptions import ValidationError from rest_framework.filters import OrderingFilter from rest_framework.filters import SearchFilter from rest_framework.generics import GenericAPIView @@ -105,6 +108,7 @@ from documents.conditionals import thumbnail_last_modified from documents.data_models import ConsumableDocument from documents.data_models import DocumentMetadataOverrides from documents.data_models import DocumentSource +from documents.file_handling import format_filename from documents.filters import CorrespondentFilterSet from documents.filters import CustomFieldFilterSet from documents.filters import DocumentFilterSet @@ -116,6 +120,7 @@ from documents.filters import PaperlessTaskFilterSet from documents.filters import ShareLinkFilterSet from documents.filters import StoragePathFilterSet from documents.filters import TagFilterSet +from documents.mail import EmailAttachment from documents.mail import send_email from documents.matching import match_correspondents from documents.matching import match_document_types @@ -141,6 +146,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 @@ -179,7 +185,6 @@ from documents.tasks import index_optimize from documents.tasks import sanity_check from documents.tasks import train_classifier from documents.tasks import update_document_parent_tags -from documents.templating.filepath import validate_filepath_template_and_render from documents.utils import get_boolean from paperless import version from paperless.celery import app as celery_app @@ -1171,7 +1176,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() @@ -1183,6 +1193,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) @@ -1206,12 +1217,28 @@ class DocumentViewSet( return HttpResponseForbidden("Insufficient permissions") try: + attachments: list[EmailAttachment] = [] + for doc in documents: + attachment_path = ( + doc.archive_path + if use_archive_version and doc.has_archive_version + else doc.source_path + ) + attachments.append( + EmailAttachment( + path=attachment_path, + mime_type=doc.mime_type, + friendly_name=doc.get_public_filename( + archive=use_archive_version and doc.has_archive_version, + ), + ), + ) + send_email( subject=subject, body=message, to=addresses, - attachments=documents, - use_archive=use_archive_version, + attachments=attachments, ) logger.debug( @@ -1355,6 +1382,13 @@ class UnifiedSearchViewSet(DocumentViewSet): type=OpenApiTypes.STR, location=OpenApiParameter.PATH, ), + OpenApiParameter( + name="limit", + type=OpenApiTypes.INT, + location=OpenApiParameter.QUERY, + description="Return only the last N entries from the log file", + required=False, + ), ], responses={ (200, "application/json"): serializers.ListSerializer( @@ -1386,8 +1420,22 @@ class LogViewSet(ViewSet): if not log_file.is_file(): raise Http404 + limit_param = request.query_params.get("limit") + if limit_param is not None: + try: + limit = int(limit_param) + except (TypeError, ValueError): + raise ValidationError({"limit": "Must be a positive integer"}) + if limit < 1: + raise ValidationError({"limit": "Must be a positive integer"}) + else: + limit = None + with log_file.open() as f: - lines = [line.rstrip() for line in f.readlines()] + if limit is None: + lines = [line.rstrip() for line in f.readlines()] + else: + lines = [line.rstrip() for line in deque(f, maxlen=limit)] return Response(lines) @@ -1832,7 +1880,7 @@ class SearchAutoCompleteView(GenericAPIView): user = self.request.user if hasattr(self.request, "user") else None if "term" in request.query_params: - term = request.query_params["term"] + term = request.query_params["term"].strip() else: return HttpResponseBadRequest("Term required") @@ -2305,7 +2353,7 @@ class StoragePathViewSet(ModelViewSet, PermissionsAwareDocumentCountMixin): document = serializer.validated_data.get("document") path = serializer.validated_data.get("path") - result = validate_filepath_template_and_render(path, document) + result = format_filename(document, path) return Response(result) @@ -2404,31 +2452,34 @@ class UiSettingsView(GenericAPIView): ), ) class RemoteVersionView(GenericAPIView): + cache_key = "remote_version_view_latest_release" + def get(self, request, format=None): - remote_version = "0.0.0" - is_greater_than_current = False current_version = packaging_version.parse(version.__full_version_str__) - try: - resp = httpx.get( - "https://api.github.com/repos/paperless-ngx/paperless-ngx/releases/latest", - headers={"Accept": "application/json"}, - ) - resp.raise_for_status() + remote_version = cache.get(self.cache_key) + if remote_version is None: try: + resp = httpx.get( + "https://api.github.com/repos/paperless-ngx/paperless-ngx/releases/latest", + headers={"Accept": "application/json"}, + ) + resp.raise_for_status() data = resp.json() remote_version = data["tag_name"] # Some early tags used ngx-x.y.z remote_version = remote_version.removeprefix("ngx-") except ValueError as e: logger.debug(f"An error occurred parsing remote version json: {e}") - except httpx.HTTPError as e: - logger.debug(f"An error occurred checking for available updates: {e}") + except httpx.HTTPError as e: + logger.debug(f"An error occurred checking for available updates: {e}") + + if remote_version: + cache.set(self.cache_key, remote_version, 60 * 15) + else: + remote_version = "0.0.0" is_greater_than_current = ( - packaging_version.parse( - remote_version, - ) - > current_version + packaging_version.parse(remote_version) > current_version ) return Response( diff --git a/src/locale/af_ZA/LC_MESSAGES/django.po b/src/locale/af_ZA/LC_MESSAGES/django.po index c21edb4f8..81d1857f2 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Waarde moet geldige JSON wees." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Ongeldige gepasmaakte veldnavraaguitdrukking" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Ongeldige uitdrukking lys. Moet nie leeg wees nie." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Ongeldige logiese uitdrukking {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ongeldige reguliere uitdrukking: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Ongeldige kleur." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Lêertipe %(type)s word nie ondersteun nie" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Ongeldige veranderlike bespeur." diff --git a/src/locale/ar_AR/LC_MESSAGES/django.po b/src/locale/ar_AR/LC_MESSAGES/django.po index 0ea02164f..401718cfd 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "يجب أن تكون القيمة JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "تجاوز الحد الأقصى لعدد شروط الاستعلام." -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} حقل مخصص غير صالح." -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "لم يتم العثور على حقل مخصص" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "التعبير النظامي خاطىء: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "لون خاطئ." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "نوع الملف %(type)s غير مدعوم" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "اكتشاف متغير خاطئ." diff --git a/src/locale/be_BY/LC_MESSAGES/django.po b/src/locale/be_BY/LC_MESSAGES/django.po index 2c228c4b1..7d6930b1f 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Няправільны рэгулярны выраз: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Няправільны колер." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Тып файла %(type)s не падтрымліваецца" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Выяўлена няправільная зменная." diff --git a/src/locale/bg_BG/LC_MESSAGES/django.po b/src/locale/bg_BG/LC_MESSAGES/django.po index 62002f642..f05719365 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Стойността трябва да е валидна JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Невалидна заявка на персонализираното полето" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Списък с невалиден израз. Не може да е празно." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Невалиден логически оператор {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Надвишен е максимален брой за заявки." -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} не е валидно персонализирано поле." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Надвишена е максималната дълбочина на вмъкване." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Персонализирано поле не е намерено" @@ -1208,39 +1208,39 @@ msgstr "стартиране на работния процес" msgid "workflow runs" msgstr "стартиране на работните процеси" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Невалиден регулярен израз: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Невалиден цвят." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Файловия тип %(type)s не се поддържа" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Засечена е невалидна променлива." diff --git a/src/locale/ca_ES/LC_MESSAGES/django.po b/src/locale/ca_ES/LC_MESSAGES/django.po index dc6077e55..a88c82430 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Valor ha de ser un JSON valid." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Expressió de camp de consulta invàlid" -#: documents/filters.py:415 +#: documents/filters.py:424 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:445 msgid "Invalid logical operator {op!r}" msgstr "Invàlid operand lògic {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Condicions de consulta excedits." -#: documents/filters.py:515 +#: documents/filters.py:524 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:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Màxima profunditat anidada excedida." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Camp personalitzat no trobat" @@ -1208,39 +1208,39 @@ msgstr "data del flux" msgid "workflow runs" msgstr "flux corrents" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expressió regular invàlida: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Color Invàlid." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Tipus arxiu %(type)s no suportat" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "ID de camp personalizat ha de ser enter: %(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "Camp personalitzat amb ID %(id)s no existeix" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "Camps personalitzats han de ser una llista d'enters o un objecte que mapegi els identificadors amb els valors." -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "Alguns camps personalitzats no existeixen o s'han especificat dues vegades." -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Variable detectada invàlida." diff --git a/src/locale/cs_CZ/LC_MESSAGES/django.po b/src/locale/cs_CZ/LC_MESSAGES/django.po index 6c748d90d..f6aa7f408 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Hodnota musí být platný JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Neplatný výraz dotazu na vlastní pole" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Neplatný seznam výrazů. Nesmí být prázdný." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Neplatný logický operátor {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 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:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} není platné vlastní pole." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 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:854 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" @@ -1208,39 +1208,39 @@ msgstr "spuštění pracovního postupu" msgid "workflow runs" msgstr "spuštění pracovních postupů" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Neplatný regulární výraz: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Neplatná barva." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Typ souboru %(type)s není podporován" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "Vlastní ID pole musí být celé číslo: %(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "Vlastní pole s ID %(id)s neexistuje" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "Vlastní pole musí být seznam celých čísel nebo ID pro mapování objektů na hodnoty." -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "Některá vlastní pole neexistují nebo byla zadána dvakrát." -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Zjištěna neplatná proměnná." diff --git a/src/locale/da_DK/LC_MESSAGES/django.po b/src/locale/da_DK/LC_MESSAGES/django.po index 2bfad2965..d2452f2d6 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Værdien skal være gyldig JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Ugyldigt tilpasset feltforespørgselsudtryk" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Ugyldig udtryksliste. Må ikke være tom." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Ugyldig logisk operatør {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Maksimalt antal forespørgselsbetingelser overskredet." -#: documents/filters.py:515 +#: documents/filters.py:524 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:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Maksimal indlejringsdybde overskredet." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Tilpasset felt ikke fundet" @@ -1208,39 +1208,39 @@ msgstr "workflow-kørsel" msgid "workflow runs" msgstr "workflow-kørsler" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ugyldigt regulært udtryk: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Ugyldig farve." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Filtype %(type)s understøttes ikke" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Ugyldig variabel fundet." diff --git a/src/locale/de_DE/LC_MESSAGES/django.po b/src/locale/de_DE/LC_MESSAGES/django.po index 68f2ed3ca..6b1c27c7b 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 12:15\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Wert muss gültiges JSON sein." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Ungültiger benutzerdefinierter Feldabfrageausdruck" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Ungültige Ausdrucksliste. Darf nicht leer sein." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Ungültiger logischer Operator {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Maximale Anzahl an Abfragebedingungen überschritten." -#: documents/filters.py:515 +#: documents/filters.py:524 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:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Maximale Verschachtelungstiefe überschritten." -#: documents/filters.py:845 +#: documents/filters.py:854 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" @@ -1208,39 +1208,39 @@ msgstr "Arbeitsablauf-Ausführung" msgid "workflow runs" msgstr "Arbeitsablauf wird ausgeführt" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ungültiger regulärer Ausdruck: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Ungültige Farbe." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Dateityp %(type)s nicht unterstützt" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "Benutzerdefinierte Feld ID muss eine Ganzzahl sein: %(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "Benutzerdefiniertes Feld mit ID %(id)s existiert nicht" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "Benutzerdefinierte Felder müssen eine Liste von Ganzzahlen oder ein Objekt mit Zuordnung von IDs zu Werten sein." -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "Einige benutzerdefinierte Felder existieren nicht oder wurden zweimal angegeben." -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Ungültige Variable erkannt." diff --git a/src/locale/el_GR/LC_MESSAGES/django.po b/src/locale/el_GR/LC_MESSAGES/django.po index 530ade8d1..3acad218d 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Η τιμή πρέπει να είναι σε έγκυρη μορφή JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Μη έγκυρη έκφραση προσαρμοσμένου ερωτήματος πεδίου" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Μη έγκυρη λίστα έκφρασης. Πρέπει να είναι μη κενή." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Μη έγκυρος λογικός τελεστής {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Υπέρβαση μέγιστου αριθμού συνθηκών ερωτήματος." -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "Το προσαρμοσμένο πεδίο {name!r} δεν είναι ένα έγκυρο." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Υπέρβαση μέγιστου βάθους εμφώλευσης." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Το προσαρμοσμένο πεδίο δε βρέθηκε" @@ -1208,39 +1208,39 @@ msgstr "εκτέλεση ροής εργασίας" msgid "workflow runs" msgstr "εκτελέσεις ροής εργασίας" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Άκυρη έκφραση: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Άκυρο χρώμα." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Ο τύπος αρχείου %(type)s δεν υποστηρίζεται" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Εντοπίστηκε μη έγκυρη μεταβλητή." diff --git a/src/locale/en_US/LC_MESSAGES/django.po b/src/locale/en_US/LC_MESSAGES/django.po index 0f2d27f3f..bc2985431 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-11-14 16:09+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:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 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 2e5f460a2..7a1b970bb 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "El valor debe ser JSON válido." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Expresión de consulta de campo personalizado no válida" -#: documents/filters.py:415 +#: documents/filters.py:424 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:445 msgid "Invalid logical operator {op!r}" msgstr "Operador lógico inválido {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 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:524 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:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Profundidad máxima de nidificación superada." -#: documents/filters.py:845 +#: documents/filters.py:854 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" @@ -1208,39 +1208,39 @@ msgstr "ejecución del flujo de trabajo" msgid "workflow runs" msgstr "ejecuciones de flujo de trabajo" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expresión irregular inválida: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Color inválido." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de fichero %(type)s no suportado" -#: documents/serialisers.py:1839 +#: 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:1846 +#: 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:1863 documents/serialisers.py:1873 +#: 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:1868 +#: 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:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Variable inválida." @@ -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 3f5ad7b9a..08358db78 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Väärtus peab olema lubatav JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Vigane kohandatud välja päringu avaldis" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Vigane avaldiste loend. Peab olema mittetühi." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Vigane loogikaoperaator {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Päringutingimuste suurim hulk on ületatud." -#: documents/filters.py:515 +#: documents/filters.py:524 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:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Suurim pesastamis sügavus ületatud." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Kohandatud välja ei leitud" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "" diff --git a/src/locale/fa_IR/LC_MESSAGES/django.po b/src/locale/fa_IR/LC_MESSAGES/django.po index f47b77c77..00a02cebe 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "مقدار باید JSON معتبر باشد." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Invalid custom field query expression" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "حداکثر تعداد شرایط پرس و جو از آن فراتر رفته است." -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{نام! R} یک زمینه سفارشی معتبر نیست." -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "زمینه سفارشی یافت نشد" @@ -1208,39 +1208,39 @@ msgstr "گردش کار" msgid "workflow runs" msgstr "گردش کار اجرا می شود" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "رنگ نامعتبر" -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "متغیر نامعتبر شناسایی شده است." diff --git a/src/locale/fi_FI/LC_MESSAGES/django.po b/src/locale/fi_FI/LC_MESSAGES/django.po index 2de50b995..a90715bc6 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Arvon on oltava kelvollista JSON:ia." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Virheellinen regex-lauseke: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Virheellinen väri." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Tiedostotyyppiä %(type)s ei tueta" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Virheellinen muuttuja havaittu." diff --git a/src/locale/fr_FR/LC_MESSAGES/django.po b/src/locale/fr_FR/LC_MESSAGES/django.po index 50471149f..e98fdc37a 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "La valeur doit être un JSON valide." -#: documents/filters.py:405 +#: documents/filters.py:414 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:424 msgid "Invalid expression list. Must be nonempty." msgstr "Liste d’expressions invalide. Doit être non vide." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Opérateur logique {op!r} invalide" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Nombre maximum de conditions de requête dépassé." -#: documents/filters.py:515 +#: documents/filters.py:524 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:561 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:669 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:854 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" @@ -1208,39 +1208,39 @@ msgstr "exécution du workflow" msgid "workflow runs" msgstr "le flux de travail s'exécute" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expression régulière incorrecte : %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Couleur incorrecte." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Type de fichier %(type)s non pris en charge" -#: documents/serialisers.py:1839 +#: 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:1846 +#: 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:1863 documents/serialisers.py:1873 +#: 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:1868 +#: 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:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Variable invalide détectée." diff --git a/src/locale/he_IL/LC_MESSAGES/django.po b/src/locale/he_IL/LC_MESSAGES/django.po index 9f502db31..709ed503e 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "ערך מוכרך להיות JSON תקין." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "ביטוי שאילתה לא חוקי של שדה מותאם אישית" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "רשימת ביטויים לא חוקית. מוכרך לכלול ערך." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "סימן פעולה לוגית לא חוקי {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "חריגה ממספר תנאי השאילתה המרבי." -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} הוא לא שדה מותאם אישית חוקי." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "חריגה מעומק הקינון המרבי." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "שדה מותאם אישית לא נמצא" @@ -1209,39 +1209,39 @@ msgstr "הרצת זרימת עבודה" msgid "workflow runs" msgstr "הרצות זרימת עבודה" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "ביטוי רגולרי בלתי חוקי: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "צבע לא חוקי." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "סוג קובץ %(type)s לא נתמך" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "משתנה לא חוקי זוהה." diff --git a/src/locale/hr_HR/LC_MESSAGES/django.po b/src/locale/hr_HR/LC_MESSAGES/django.po index 84ded8511..58659d5f9 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Nevažeći regularni izraz: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Nevažeća boja." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s nije podržana" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Otkrivena je nevaljana vrsta datoteke." diff --git a/src/locale/hu_HU/LC_MESSAGES/django.po b/src/locale/hu_HU/LC_MESSAGES/django.po index 1dbac61d5..3f2cc38df 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." -msgstr "Érvényes JSON érték szükséges" +msgstr "Érvényes JSON érték szükséges." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Érvénytelen egyéni mező lekérdezési kifejezés" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Érvénytelen kifejezéslista. Nem lehet üres." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Érvénytelen logikai operátor {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Maximum lekérdezési feltételszám átlépve." -#: documents/filters.py:515 +#: documents/filters.py:524 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:561 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." +msgstr "A(z) {data_type} nem támogatja a {expr!r} kifejezés lekérdezést." -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 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:854 msgid "Custom field not found" msgstr "Az egyéni mező nem található" @@ -136,11 +136,11 @@ msgstr "címkék" #: documents/models.py:123 msgid "Cannot set itself as parent." -msgstr "" +msgstr "Nem állíthatja be magát szülőként." #: documents/models.py:125 msgid "Cannot set parent to a descendant." -msgstr "" +msgstr "Nem lehet szülőt beállítani egy leszármazotthoz." #: documents/models.py:142 documents/models.py:190 msgid "document type" @@ -758,7 +758,7 @@ msgstr "Válassz" #: documents/models.py:795 msgid "Long Text" -msgstr "" +msgstr "Hosszú szöveg" #: documents/models.py:807 msgid "data type" @@ -858,11 +858,11 @@ msgstr "ezekkel a címkékkel rendelkezik" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "ezen címke(ék) mindegyikét tartalmazza" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "nem tartalmazza ezt a címkét vagy címéket" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "ez a dokumentumtípusa" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "nem rendelkezik dokumentumtípussal a" #: documents/models.py:1102 msgid "has this correspondent" @@ -878,23 +878,23 @@ msgstr "ez a levelezőpartner" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "nincs ilyen levelezőpartner(ek).\"" #: documents/models.py:1117 msgid "has this storage path" -msgstr "" +msgstr "rendelkezik ezzel a tárolási útvonallal" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "nem rendelkezik ezzel a tárolási útvonallal" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "egyéni mező a lekérdezés szűrésére" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "" +msgstr "JSON-kódolású egyéni mező lekérdezési kifejezés." #: documents/models.py:1135 msgid "schedule offset days" @@ -1038,7 +1038,7 @@ msgstr "cím hozzárendelése" #: documents/models.py:1302 msgid "Assign a document title, must be a Jinja2 template, see documentation." -msgstr "" +msgstr "Dokumentumcím hozzárendelése, amelynek Jinja2 sablonnak kell lennie, lásd a dokumentációt." #: documents/models.py:1310 paperless_mail/models.py:274 msgid "assign this tag" @@ -1208,39 +1208,39 @@ msgstr "munkafolyamat futtatás" msgid "workflow runs" msgstr "munkafolyamat futtatások" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Érvénytelen reguláris kifejezés: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Érvénytelen szín." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Fájltípus %(type)s nem támogatott" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" -msgstr "" +msgstr "Az egyéni mező azonosítójának egész számnak kell lennie: %(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" -msgstr "" +msgstr "A(z) %(id)s azonosítójú egyéni mező nem létezik" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "Az egyéni mezőknek egész számok listájának vagy azonosítókat értékekhez rendelő objektumnak kell lenniük." -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." -msgstr "" +msgstr "Néhány egyéni mező nem létezik, vagy kétszer lett megadva." -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Érvénytelen változót észleltek." diff --git a/src/locale/id_ID/LC_MESSAGES/django.po b/src/locale/id_ID/LC_MESSAGES/django.po index 90b3a6beb..02e83ae1f 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Nilai harus berupa JSON yang valid." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Ekspresi pencarian bidang khusus tidak valid" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Daftar ekspresi tidak valid. Tidak boleh kosong." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Operator logika {op!r} tidak valid" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Jumlah maksimal kondisi pencarian terlampaui." -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} bukan bidang khusus yang valid." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Kedalaman susunan maksimal terlampaui." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Bidang khusus tidak ditemukan" @@ -1208,39 +1208,39 @@ msgstr "jalankan alur kerja" msgid "workflow runs" msgstr "daftar jalankan alur kerja" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ekspresi reguler tidak sesuai: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Warna tidak sesuai." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Jenis berkas %(type)s tidak didukung" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Variabel ilegal terdeteksi." diff --git a/src/locale/it_IT/LC_MESSAGES/django.po b/src/locale/it_IT/LC_MESSAGES/django.po index 2454c3049..5c5bce0ac 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Il valore deve essere un JSON valido." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Campo personalizzato della query non valido" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Elenco delle espressioni non valido. Deve essere non vuoto." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Operatore logico non valido {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Numero massimo delle condizioni della jQuery superato." -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} non è un campo personalizzato valido." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Superata la profondità massima di nidificazione." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Campo personalizzato non trovato" @@ -858,11 +858,11 @@ msgstr "ha questi tag(s)" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "ha tutte queste etichette" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "non ha queste etichette" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "ha questo tipo di documento" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "non ha questi tipi di documento" #: documents/models.py:1102 msgid "has this correspondent" @@ -878,7 +878,7 @@ msgstr "ha questo corrispondente" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "non ha questi corrispondenti" #: documents/models.py:1117 msgid "has this storage path" @@ -886,7 +886,7 @@ msgstr "ha questo percorso di archiviazione" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "non ha questo percorso di archiviazione" #: documents/models.py:1128 msgid "filter custom field query" @@ -898,7 +898,7 @@ msgstr "" #: documents/models.py:1135 msgid "schedule offset days" -msgstr "" +msgstr "giorni di offset della schedulazione" #: documents/models.py:1138 msgid "The number of days to offset the schedule trigger by." @@ -998,19 +998,19 @@ msgstr "corpo webhook" #: documents/models.py:1253 msgid "The body to send with the webhook URL if parameters not used." -msgstr "" +msgstr "Il corpo da inviare con l'URL del webhook se i parametri non vengono utilizzati." #: documents/models.py:1257 msgid "webhook headers" -msgstr "" +msgstr "header Webhook" #: documents/models.py:1260 msgid "The headers to send with the webhook URL." -msgstr "" +msgstr "Le intestazioni da inviare con l'URL del webhook." #: documents/models.py:1265 msgid "include document in webhook" -msgstr "" +msgstr "includi documento nel webhook" #: documents/models.py:1276 msgid "Assignment" @@ -1038,7 +1038,7 @@ msgstr "assegna titolo" #: documents/models.py:1302 msgid "Assign a document title, must be a Jinja2 template, see documentation." -msgstr "" +msgstr "Assegnare un titolo del documento, deve essere un modello Jinja2, vedere la documentazione." #: documents/models.py:1310 paperless_mail/models.py:274 msgid "assign this tag" @@ -1178,7 +1178,7 @@ msgstr "priorità" #: documents/models.py:1534 msgid "triggers" -msgstr "" +msgstr "trigger" #: documents/models.py:1541 msgid "actions" @@ -1202,45 +1202,45 @@ msgstr "data esecuzione" #: documents/models.py:1579 msgid "workflow run" -msgstr "" +msgstr "esecuzione del workflow" #: documents/models.py:1580 msgid "workflow runs" -msgstr "" +msgstr "esecuzione del workflow" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Espressione regolare non valida: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Colore non valido." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Il tipo di file %(type)s non è supportato" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" -msgstr "" +msgstr "L'id del campo personalizzato deve essere un intero: %(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" -msgstr "" +msgstr "Il campo personalizzato con id %(id)s non esiste" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "I campi personalizzati devono essere un elenco di interi o un id di mappatura." -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." -msgstr "" +msgstr "Alcuni campi personalizzati non esistono o sono stati specificati due volte." -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Variabile non valida rilevata." @@ -1482,7 +1482,7 @@ msgstr "Impossibile analizzare l'URI {value}, la posizione di rete o il percorso #: documents/validators.py:36 msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}" -msgstr "" +msgstr "Schema URI '{parts.scheme}' non è consentito. Schemi consentiti: {', '.join(allowed_schemes)}" #: documents/validators.py:45 #, python-brace-format @@ -1599,7 +1599,7 @@ msgstr "Imposta il valore di ripiego DPI dell'immagine" #: paperless/models.py:131 msgid "Controls the unpaper cleaning" -msgstr "" +msgstr "Controlla la pulizia della carta" #: paperless/models.py:138 msgid "Enables deskew" @@ -1635,15 +1635,15 @@ msgstr "Logo applicazione" #: paperless/models.py:197 msgid "Enables barcode scanning" -msgstr "" +msgstr "Abilita scansione codici a barre" #: paperless/models.py:203 msgid "Enables barcode TIFF support" -msgstr "" +msgstr "Abilita il supporto TIFF del codice a barre" #: paperless/models.py:209 msgid "Sets the barcode string" -msgstr "" +msgstr "Imposta la stringa del barcode" #: paperless/models.py:217 msgid "Retains split pages" @@ -1659,11 +1659,11 @@ msgstr "Imposta il prefisso del codice a barre ASN" #: paperless/models.py:237 msgid "Sets the barcode upscale factor" -msgstr "" +msgstr "Imposta il fattore di ingrandimento del codice a barre" #: paperless/models.py:244 msgid "Sets the barcode DPI" -msgstr "" +msgstr "Imposta il DPI codice a barre" #: paperless/models.py:251 msgid "Sets the maximum pages for barcode" @@ -1675,7 +1675,7 @@ msgstr "Abilita tag del codice a barre" #: paperless/models.py:264 msgid "Sets the tag barcode mapping" -msgstr "" +msgstr "Imposta la mappatura dei codici a barre dei tag" #: paperless/models.py:269 msgid "paperless application settings" diff --git a/src/locale/ja_JP/LC_MESSAGES/django.po b/src/locale/ja_JP/LC_MESSAGES/django.po index 5dfe74544..585880f74 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "値は有効なJSONである必要があります。" -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "無効なカスタムフィールドクエリ式" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "無効な式リストです。空であってはなりません。" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "無効な論理演算子 {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "クエリ条件の最大数を超えました。" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} は有効なカスタムフィールドではありません。" -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "最大ネストの深さを超えました。" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "カスタムフィールドが見つかりません" @@ -1208,39 +1208,39 @@ msgstr "ワークフローの実行" msgid "workflow runs" msgstr "ワークフローの実行" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "不正な正規表現: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "無効な色" -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "ファイルタイプ %(type)s はサポートされていません" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "無効な変数を検出しました" diff --git a/src/locale/ko_KR/LC_MESSAGES/django.po b/src/locale/ko_KR/LC_MESSAGES/django.po index cec535c83..62cfede55 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "값은 유효한 JSON이어야 합니다." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "잘못된 사용자 정의 필드 쿼리 표현식" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "잘못된 표현식 목록입니다. 비어 있지 않아야 합니다." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "잘못된 논리 연산자 {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "쿼리 조건의 최대 개수를 초과했습니다." -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} 은 잘못된 사용자 정의 필드입니다." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "최대 중첩 깊이를 초과했습니다." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "사용자 지정 필드를 찾을 수 없음" @@ -1208,39 +1208,39 @@ msgstr "워크플로 실행" msgid "workflow runs" msgstr "워크플로우 실행" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "잘못된 정규식: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "사용자 정의 ID 필드는 반드시 정수여야 합니다: %(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "%(id)s를 ID로 가지는 사용자 정의 필드가 존재하지 않습니다." -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "사용자 정의 필드는 정수 리스트이거나, ID를 값에 매핑하는 객체여야 합니다." -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "존재하지 않거나 중복된 사용자 정의 필드가 있습니다." -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "잘못된 변수가 감지되었습니다." diff --git a/src/locale/lb_LU/LC_MESSAGES/django.po b/src/locale/lb_LU/LC_MESSAGES/django.po index 48d82ad31..589c2c32c 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ongëltege regulären Ausdrock: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Ongëlteg Faarf." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Fichierstyp %(type)s net ënnerstëtzt" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Ongëlteg Zeechen detektéiert." diff --git a/src/locale/lt_LT/LC_MESSAGES/django.po b/src/locale/lt_LT/LC_MESSAGES/django.po index 8f4ee8692..4447af87f 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 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:445 msgid "Invalid logical operator {op!r}" msgstr "Neteisingas loginis operatorius {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Viršytas maksimalus užklausos sąlygų skaičius." -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nėra galiojantis pasirinktas laukas." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Viršytas maksimalus įdėjimo gylis." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "" diff --git a/src/locale/lv_LV/LC_MESSAGES/django.po b/src/locale/lv_LV/LC_MESSAGES/django.po index 87dd1b252..dbcfea250 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "" diff --git a/src/locale/mk_MK/LC_MESSAGES/django.po b/src/locale/mk_MK/LC_MESSAGES/django.po new file mode 100644 index 000000000..5f72d7290 --- /dev/null +++ b/src/locale/mk_MK/LC_MESSAGES/django.po @@ -0,0 +1,2154 @@ +msgid "" +msgstr "" +"Project-Id-Version: paperless-ngx\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\n" +"Last-Translator: \n" +"Language-Team: Macedonian\n" +"Language: mk_MK\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Plural-Forms: nplurals=2; plural=(n%10==1 && n%100 != 11 ? 0 : 1);\n" +"X-Crowdin-Project: paperless-ngx\n" +"X-Crowdin-Project-ID: 500308\n" +"X-Crowdin-Language: mk\n" +"X-Crowdin-File: /dev/src/locale/en_US/LC_MESSAGES/django.po\n" +"X-Crowdin-File-ID: 14\n" + +#: documents/apps.py:8 +msgid "Documents" +msgstr "" + +#: documents/filters.py:395 +msgid "Value must be valid JSON." +msgstr "" + +#: documents/filters.py:414 +msgid "Invalid custom field query expression" +msgstr "" + +#: documents/filters.py:424 +msgid "Invalid expression list. Must be nonempty." +msgstr "" + +#: documents/filters.py:445 +msgid "Invalid logical operator {op!r}" +msgstr "" + +#: documents/filters.py:459 +msgid "Maximum number of query conditions exceeded." +msgstr "" + +#: documents/filters.py:524 +msgid "{name!r} is not a valid custom field." +msgstr "" + +#: documents/filters.py:561 +msgid "{data_type} does not support query expr {expr!r}." +msgstr "" + +#: documents/filters.py:669 documents/models.py:135 +msgid "Maximum nesting depth exceeded." +msgstr "" + +#: documents/filters.py:854 +msgid "Custom field not found" +msgstr "" + +#: documents/models.py:38 documents/models.py:768 +msgid "owner" +msgstr "" + +#: documents/models.py:55 documents/models.py:983 +msgid "None" +msgstr "" + +#: documents/models.py:56 documents/models.py:984 +msgid "Any word" +msgstr "" + +#: documents/models.py:57 documents/models.py:985 +msgid "All words" +msgstr "" + +#: documents/models.py:58 documents/models.py:986 +msgid "Exact match" +msgstr "" + +#: documents/models.py:59 documents/models.py:987 +msgid "Regular expression" +msgstr "" + +#: documents/models.py:60 documents/models.py:988 +msgid "Fuzzy word" +msgstr "" + +#: documents/models.py:61 +msgid "Automatic" +msgstr "" + +#: documents/models.py:64 documents/models.py:456 documents/models.py:1526 +#: paperless_mail/models.py:23 paperless_mail/models.py:143 +msgid "name" +msgstr "" + +#: documents/models.py:66 documents/models.py:1052 +msgid "match" +msgstr "" + +#: documents/models.py:69 documents/models.py:1055 +msgid "matching algorithm" +msgstr "" + +#: documents/models.py:74 documents/models.py:1060 +msgid "is insensitive" +msgstr "" + +#: documents/models.py:97 documents/models.py:170 +msgid "correspondent" +msgstr "" + +#: documents/models.py:98 +msgid "correspondents" +msgstr "" + +#: documents/models.py:102 +msgid "color" +msgstr "" + +#: documents/models.py:107 +msgid "is inbox tag" +msgstr "" + +#: documents/models.py:110 +msgid "Marks this tag as an inbox tag: All newly consumed documents will be tagged with inbox tags." +msgstr "" + +#: documents/models.py:116 +msgid "tag" +msgstr "" + +#: documents/models.py:117 documents/models.py:208 +msgid "tags" +msgstr "" + +#: documents/models.py:123 +msgid "Cannot set itself as parent." +msgstr "" + +#: documents/models.py:125 +msgid "Cannot set parent to a descendant." +msgstr "" + +#: documents/models.py:142 documents/models.py:190 +msgid "document type" +msgstr "" + +#: documents/models.py:143 +msgid "document types" +msgstr "" + +#: documents/models.py:148 +msgid "path" +msgstr "" + +#: documents/models.py:152 documents/models.py:179 +msgid "storage path" +msgstr "" + +#: documents/models.py:153 +msgid "storage paths" +msgstr "" + +#: documents/models.py:160 +msgid "Unencrypted" +msgstr "" + +#: documents/models.py:161 +msgid "Encrypted with GNU Privacy Guard" +msgstr "" + +#: documents/models.py:182 +msgid "title" +msgstr "" + +#: documents/models.py:194 documents/models.py:682 +msgid "content" +msgstr "" + +#: documents/models.py:197 +msgid "The raw, text-only data of the document. This field is primarily used for searching." +msgstr "" + +#: documents/models.py:202 +msgid "mime type" +msgstr "" + +#: documents/models.py:212 +msgid "checksum" +msgstr "" + +#: documents/models.py:216 +msgid "The checksum of the original document." +msgstr "" + +#: documents/models.py:220 +msgid "archive checksum" +msgstr "" + +#: documents/models.py:225 +msgid "The checksum of the archived document." +msgstr "" + +#: documents/models.py:229 +msgid "page count" +msgstr "" + +#: documents/models.py:236 +msgid "The number of pages of the document." +msgstr "" + +#: documents/models.py:241 documents/models.py:688 documents/models.py:726 +#: documents/models.py:798 documents/models.py:857 +msgid "created" +msgstr "" + +#: documents/models.py:247 +msgid "modified" +msgstr "" + +#: documents/models.py:254 +msgid "storage type" +msgstr "" + +#: documents/models.py:262 +msgid "added" +msgstr "" + +#: documents/models.py:269 +msgid "filename" +msgstr "" + +#: documents/models.py:275 +msgid "Current filename in storage" +msgstr "" + +#: documents/models.py:279 +msgid "archive filename" +msgstr "" + +#: documents/models.py:285 +msgid "Current archive filename in storage" +msgstr "" + +#: documents/models.py:289 +msgid "original filename" +msgstr "" + +#: documents/models.py:295 +msgid "The original name of the file when it was uploaded" +msgstr "" + +#: documents/models.py:302 +msgid "archive serial number" +msgstr "" + +#: documents/models.py:312 +msgid "The position of this document in your physical document archive." +msgstr "" + +#: documents/models.py:318 documents/models.py:699 documents/models.py:753 +#: documents/models.py:1569 +msgid "document" +msgstr "" + +#: documents/models.py:319 +msgid "documents" +msgstr "" + +#: documents/models.py:437 +msgid "Table" +msgstr "" + +#: documents/models.py:438 +msgid "Small Cards" +msgstr "" + +#: documents/models.py:439 +msgid "Large Cards" +msgstr "" + +#: documents/models.py:442 +msgid "Title" +msgstr "" + +#: documents/models.py:443 documents/models.py:1004 +msgid "Created" +msgstr "" + +#: documents/models.py:444 documents/models.py:1003 +msgid "Added" +msgstr "" + +#: documents/models.py:445 +msgid "Tags" +msgstr "" + +#: documents/models.py:446 +msgid "Correspondent" +msgstr "" + +#: documents/models.py:447 +msgid "Document Type" +msgstr "" + +#: documents/models.py:448 +msgid "Storage Path" +msgstr "" + +#: documents/models.py:449 +msgid "Note" +msgstr "" + +#: documents/models.py:450 +msgid "Owner" +msgstr "" + +#: documents/models.py:451 +msgid "Shared" +msgstr "" + +#: documents/models.py:452 +msgid "ASN" +msgstr "" + +#: documents/models.py:453 +msgid "Pages" +msgstr "" + +#: documents/models.py:459 +msgid "show on dashboard" +msgstr "" + +#: documents/models.py:462 +msgid "show in sidebar" +msgstr "" + +#: documents/models.py:466 +msgid "sort field" +msgstr "" + +#: documents/models.py:471 +msgid "sort reverse" +msgstr "" + +#: documents/models.py:474 +msgid "View page size" +msgstr "" + +#: documents/models.py:482 +msgid "View display mode" +msgstr "" + +#: documents/models.py:489 +msgid "Document display fields" +msgstr "" + +#: documents/models.py:496 documents/models.py:559 +msgid "saved view" +msgstr "" + +#: documents/models.py:497 +msgid "saved views" +msgstr "" + +#: documents/models.py:505 +msgid "title contains" +msgstr "" + +#: documents/models.py:506 +msgid "content contains" +msgstr "" + +#: documents/models.py:507 +msgid "ASN is" +msgstr "" + +#: documents/models.py:508 +msgid "correspondent is" +msgstr "" + +#: documents/models.py:509 +msgid "document type is" +msgstr "" + +#: documents/models.py:510 +msgid "is in inbox" +msgstr "" + +#: documents/models.py:511 +msgid "has tag" +msgstr "" + +#: documents/models.py:512 +msgid "has any tag" +msgstr "" + +#: documents/models.py:513 +msgid "created before" +msgstr "" + +#: documents/models.py:514 +msgid "created after" +msgstr "" + +#: documents/models.py:515 +msgid "created year is" +msgstr "" + +#: documents/models.py:516 +msgid "created month is" +msgstr "" + +#: documents/models.py:517 +msgid "created day is" +msgstr "" + +#: documents/models.py:518 +msgid "added before" +msgstr "" + +#: documents/models.py:519 +msgid "added after" +msgstr "" + +#: documents/models.py:520 +msgid "modified before" +msgstr "" + +#: documents/models.py:521 +msgid "modified after" +msgstr "" + +#: documents/models.py:522 +msgid "does not have tag" +msgstr "" + +#: documents/models.py:523 +msgid "does not have ASN" +msgstr "" + +#: documents/models.py:524 +msgid "title or content contains" +msgstr "" + +#: documents/models.py:525 +msgid "fulltext query" +msgstr "" + +#: documents/models.py:526 +msgid "more like this" +msgstr "" + +#: documents/models.py:527 +msgid "has tags in" +msgstr "" + +#: documents/models.py:528 +msgid "ASN greater than" +msgstr "" + +#: documents/models.py:529 +msgid "ASN less than" +msgstr "" + +#: documents/models.py:530 +msgid "storage path is" +msgstr "" + +#: documents/models.py:531 +msgid "has correspondent in" +msgstr "" + +#: documents/models.py:532 +msgid "does not have correspondent in" +msgstr "" + +#: documents/models.py:533 +msgid "has document type in" +msgstr "" + +#: documents/models.py:534 +msgid "does not have document type in" +msgstr "" + +#: documents/models.py:535 +msgid "has storage path in" +msgstr "" + +#: documents/models.py:536 +msgid "does not have storage path in" +msgstr "" + +#: documents/models.py:537 +msgid "owner is" +msgstr "" + +#: documents/models.py:538 +msgid "has owner in" +msgstr "" + +#: documents/models.py:539 +msgid "does not have owner" +msgstr "" + +#: documents/models.py:540 +msgid "does not have owner in" +msgstr "" + +#: documents/models.py:541 +msgid "has custom field value" +msgstr "" + +#: documents/models.py:542 +msgid "is shared by me" +msgstr "" + +#: documents/models.py:543 +msgid "has custom fields" +msgstr "" + +#: documents/models.py:544 +msgid "has custom field in" +msgstr "" + +#: documents/models.py:545 +msgid "does not have custom field in" +msgstr "" + +#: documents/models.py:546 +msgid "does not have custom field" +msgstr "" + +#: documents/models.py:547 +msgid "custom fields query" +msgstr "" + +#: documents/models.py:548 +msgid "created to" +msgstr "" + +#: documents/models.py:549 +msgid "created from" +msgstr "" + +#: documents/models.py:550 +msgid "added to" +msgstr "" + +#: documents/models.py:551 +msgid "added from" +msgstr "" + +#: documents/models.py:552 +msgid "mime type is" +msgstr "" + +#: documents/models.py:562 +msgid "rule type" +msgstr "" + +#: documents/models.py:564 +msgid "value" +msgstr "" + +#: documents/models.py:567 +msgid "filter rule" +msgstr "" + +#: documents/models.py:568 +msgid "filter rules" +msgstr "" + +#: documents/models.py:592 +msgid "Auto Task" +msgstr "" + +#: documents/models.py:593 +msgid "Scheduled Task" +msgstr "" + +#: documents/models.py:594 +msgid "Manual Task" +msgstr "" + +#: documents/models.py:597 +msgid "Consume File" +msgstr "" + +#: documents/models.py:598 +msgid "Train Classifier" +msgstr "" + +#: documents/models.py:599 +msgid "Check Sanity" +msgstr "" + +#: documents/models.py:600 +msgid "Index Optimize" +msgstr "" + +#: documents/models.py:605 +msgid "Task ID" +msgstr "" + +#: documents/models.py:606 +msgid "Celery ID for the Task that was run" +msgstr "" + +#: documents/models.py:611 +msgid "Acknowledged" +msgstr "" + +#: documents/models.py:612 +msgid "If the task is acknowledged via the frontend or API" +msgstr "" + +#: documents/models.py:618 +msgid "Task Filename" +msgstr "" + +#: documents/models.py:619 +msgid "Name of the file which the Task was run for" +msgstr "" + +#: documents/models.py:626 +msgid "Task Name" +msgstr "" + +#: documents/models.py:627 +msgid "Name of the task that was run" +msgstr "" + +#: documents/models.py:634 +msgid "Task State" +msgstr "" + +#: documents/models.py:635 +msgid "Current state of the task being run" +msgstr "" + +#: documents/models.py:641 +msgid "Created DateTime" +msgstr "" + +#: documents/models.py:642 +msgid "Datetime field when the task result was created in UTC" +msgstr "" + +#: documents/models.py:648 +msgid "Started DateTime" +msgstr "" + +#: documents/models.py:649 +msgid "Datetime field when the task was started in UTC" +msgstr "" + +#: documents/models.py:655 +msgid "Completed DateTime" +msgstr "" + +#: documents/models.py:656 +msgid "Datetime field when the task was completed in UTC" +msgstr "" + +#: documents/models.py:662 +msgid "Result Data" +msgstr "" + +#: documents/models.py:664 +msgid "The data returned by the task" +msgstr "" + +#: documents/models.py:672 +msgid "Task Type" +msgstr "" + +#: documents/models.py:673 +msgid "The type of task that was run" +msgstr "" + +#: documents/models.py:684 +msgid "Note for the document" +msgstr "" + +#: documents/models.py:708 +msgid "user" +msgstr "" + +#: documents/models.py:713 +msgid "note" +msgstr "" + +#: documents/models.py:714 +msgid "notes" +msgstr "" + +#: documents/models.py:722 +msgid "Archive" +msgstr "" + +#: documents/models.py:723 +msgid "Original" +msgstr "" + +#: documents/models.py:734 paperless_mail/models.py:75 +msgid "expiration" +msgstr "" + +#: documents/models.py:741 +msgid "slug" +msgstr "" + +#: documents/models.py:773 +msgid "share link" +msgstr "" + +#: documents/models.py:774 +msgid "share links" +msgstr "" + +#: documents/models.py:786 +msgid "String" +msgstr "" + +#: documents/models.py:787 +msgid "URL" +msgstr "" + +#: documents/models.py:788 +msgid "Date" +msgstr "" + +#: documents/models.py:789 +msgid "Boolean" +msgstr "" + +#: documents/models.py:790 +msgid "Integer" +msgstr "" + +#: documents/models.py:791 +msgid "Float" +msgstr "" + +#: documents/models.py:792 +msgid "Monetary" +msgstr "" + +#: documents/models.py:793 +msgid "Document Link" +msgstr "" + +#: documents/models.py:794 +msgid "Select" +msgstr "" + +#: documents/models.py:795 +msgid "Long Text" +msgstr "" + +#: documents/models.py:807 +msgid "data type" +msgstr "" + +#: documents/models.py:814 +msgid "extra data" +msgstr "" + +#: documents/models.py:818 +msgid "Extra data for the custom field, such as select options" +msgstr "" + +#: documents/models.py:824 +msgid "custom field" +msgstr "" + +#: documents/models.py:825 +msgid "custom fields" +msgstr "" + +#: documents/models.py:925 +msgid "custom field instance" +msgstr "" + +#: documents/models.py:926 +msgid "custom field instances" +msgstr "" + +#: documents/models.py:991 +msgid "Consumption Started" +msgstr "" + +#: documents/models.py:992 +msgid "Document Added" +msgstr "" + +#: documents/models.py:993 +msgid "Document Updated" +msgstr "" + +#: documents/models.py:994 +msgid "Scheduled" +msgstr "" + +#: documents/models.py:997 +msgid "Consume Folder" +msgstr "" + +#: documents/models.py:998 +msgid "Api Upload" +msgstr "" + +#: documents/models.py:999 +msgid "Mail Fetch" +msgstr "" + +#: documents/models.py:1000 +msgid "Web UI" +msgstr "" + +#: documents/models.py:1005 +msgid "Modified" +msgstr "" + +#: documents/models.py:1006 +msgid "Custom Field" +msgstr "" + +#: documents/models.py:1009 +msgid "Workflow Trigger Type" +msgstr "" + +#: documents/models.py:1021 +msgid "filter path" +msgstr "" + +#: documents/models.py:1026 +msgid "Only consume documents with a path that matches this if specified. Wildcards specified as * are allowed. Case insensitive." +msgstr "" + +#: documents/models.py:1033 +msgid "filter filename" +msgstr "" + +#: documents/models.py:1038 paperless_mail/models.py:200 +msgid "Only consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: documents/models.py:1049 +msgid "filter documents from this mail rule" +msgstr "" + +#: documents/models.py:1065 +msgid "has these tag(s)" +msgstr "" + +#: documents/models.py:1072 +msgid "has all of these tag(s)" +msgstr "" + +#: documents/models.py:1079 +msgid "does not have these tag(s)" +msgstr "" + +#: documents/models.py:1087 +msgid "has this document type" +msgstr "" + +#: documents/models.py:1094 +msgid "does not have these document type(s)" +msgstr "" + +#: documents/models.py:1102 +msgid "has this correspondent" +msgstr "" + +#: documents/models.py:1109 +msgid "does not have these correspondent(s)" +msgstr "" + +#: documents/models.py:1117 +msgid "has this storage path" +msgstr "" + +#: documents/models.py:1124 +msgid "does not have these storage path(s)" +msgstr "" + +#: documents/models.py:1128 +msgid "filter custom field query" +msgstr "" + +#: documents/models.py:1131 +msgid "JSON-encoded custom field query expression." +msgstr "" + +#: documents/models.py:1135 +msgid "schedule offset days" +msgstr "" + +#: documents/models.py:1138 +msgid "The number of days to offset the schedule trigger by." +msgstr "" + +#: documents/models.py:1143 +msgid "schedule is recurring" +msgstr "" + +#: documents/models.py:1146 +msgid "If the schedule should be recurring." +msgstr "" + +#: documents/models.py:1151 +msgid "schedule recurring delay in days" +msgstr "" + +#: documents/models.py:1155 +msgid "The number of days between recurring schedule triggers." +msgstr "" + +#: documents/models.py:1160 +msgid "schedule date field" +msgstr "" + +#: documents/models.py:1165 +msgid "The field to check for a schedule trigger." +msgstr "" + +#: documents/models.py:1174 +msgid "schedule date custom field" +msgstr "" + +#: documents/models.py:1178 +msgid "workflow trigger" +msgstr "" + +#: documents/models.py:1179 +msgid "workflow triggers" +msgstr "" + +#: documents/models.py:1187 +msgid "email subject" +msgstr "" + +#: documents/models.py:1191 +msgid "The subject of the email, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1197 +msgid "email body" +msgstr "" + +#: documents/models.py:1200 +msgid "The body (message) of the email, can include some placeholders, see documentation." +msgstr "" + +#: documents/models.py:1206 +msgid "emails to" +msgstr "" + +#: documents/models.py:1209 +msgid "The destination email addresses, comma separated." +msgstr "" + +#: documents/models.py:1215 +msgid "include document in email" +msgstr "" + +#: documents/models.py:1226 +msgid "webhook url" +msgstr "" + +#: documents/models.py:1229 +msgid "The destination URL for the notification." +msgstr "" + +#: documents/models.py:1234 +msgid "use parameters" +msgstr "" + +#: documents/models.py:1239 +msgid "send as JSON" +msgstr "" + +#: documents/models.py:1243 +msgid "webhook parameters" +msgstr "" + +#: documents/models.py:1246 +msgid "The parameters to send with the webhook URL if body not used." +msgstr "" + +#: documents/models.py:1250 +msgid "webhook body" +msgstr "" + +#: documents/models.py:1253 +msgid "The body to send with the webhook URL if parameters not used." +msgstr "" + +#: documents/models.py:1257 +msgid "webhook headers" +msgstr "" + +#: documents/models.py:1260 +msgid "The headers to send with the webhook URL." +msgstr "" + +#: documents/models.py:1265 +msgid "include document in webhook" +msgstr "" + +#: documents/models.py:1276 +msgid "Assignment" +msgstr "" + +#: documents/models.py:1280 +msgid "Removal" +msgstr "" + +#: documents/models.py:1284 documents/templates/account/password_reset.html:15 +msgid "Email" +msgstr "" + +#: documents/models.py:1288 +msgid "Webhook" +msgstr "" + +#: documents/models.py:1292 +msgid "Workflow Action Type" +msgstr "" + +#: documents/models.py:1298 +msgid "assign title" +msgstr "" + +#: documents/models.py:1302 +msgid "Assign a document title, must be a Jinja2 template, see documentation." +msgstr "" + +#: documents/models.py:1310 paperless_mail/models.py:274 +msgid "assign this tag" +msgstr "" + +#: documents/models.py:1319 paperless_mail/models.py:282 +msgid "assign this document type" +msgstr "" + +#: documents/models.py:1328 paperless_mail/models.py:296 +msgid "assign this correspondent" +msgstr "" + +#: documents/models.py:1337 +msgid "assign this storage path" +msgstr "" + +#: documents/models.py:1346 +msgid "assign this owner" +msgstr "" + +#: documents/models.py:1353 +msgid "grant view permissions to these users" +msgstr "" + +#: documents/models.py:1360 +msgid "grant view permissions to these groups" +msgstr "" + +#: documents/models.py:1367 +msgid "grant change permissions to these users" +msgstr "" + +#: documents/models.py:1374 +msgid "grant change permissions to these groups" +msgstr "" + +#: documents/models.py:1381 +msgid "assign these custom fields" +msgstr "" + +#: documents/models.py:1385 +msgid "custom field values" +msgstr "" + +#: documents/models.py:1389 +msgid "Optional values to assign to the custom fields." +msgstr "" + +#: documents/models.py:1398 +msgid "remove these tag(s)" +msgstr "" + +#: documents/models.py:1403 +msgid "remove all tags" +msgstr "" + +#: documents/models.py:1410 +msgid "remove these document type(s)" +msgstr "" + +#: documents/models.py:1415 +msgid "remove all document types" +msgstr "" + +#: documents/models.py:1422 +msgid "remove these correspondent(s)" +msgstr "" + +#: documents/models.py:1427 +msgid "remove all correspondents" +msgstr "" + +#: documents/models.py:1434 +msgid "remove these storage path(s)" +msgstr "" + +#: documents/models.py:1439 +msgid "remove all storage paths" +msgstr "" + +#: documents/models.py:1446 +msgid "remove these owner(s)" +msgstr "" + +#: documents/models.py:1451 +msgid "remove all owners" +msgstr "" + +#: documents/models.py:1458 +msgid "remove view permissions for these users" +msgstr "" + +#: documents/models.py:1465 +msgid "remove view permissions for these groups" +msgstr "" + +#: documents/models.py:1472 +msgid "remove change permissions for these users" +msgstr "" + +#: documents/models.py:1479 +msgid "remove change permissions for these groups" +msgstr "" + +#: documents/models.py:1484 +msgid "remove all permissions" +msgstr "" + +#: documents/models.py:1491 +msgid "remove these custom fields" +msgstr "" + +#: documents/models.py:1496 +msgid "remove all custom fields" +msgstr "" + +#: documents/models.py:1505 +msgid "email" +msgstr "" + +#: documents/models.py:1514 +msgid "webhook" +msgstr "" + +#: documents/models.py:1518 +msgid "workflow action" +msgstr "" + +#: documents/models.py:1519 +msgid "workflow actions" +msgstr "" + +#: documents/models.py:1528 paperless_mail/models.py:145 +msgid "order" +msgstr "" + +#: documents/models.py:1534 +msgid "triggers" +msgstr "" + +#: documents/models.py:1541 +msgid "actions" +msgstr "" + +#: documents/models.py:1544 paperless_mail/models.py:154 +msgid "enabled" +msgstr "" + +#: documents/models.py:1555 +msgid "workflow" +msgstr "" + +#: documents/models.py:1559 +msgid "workflow trigger type" +msgstr "" + +#: documents/models.py:1573 +msgid "date run" +msgstr "" + +#: documents/models.py:1579 +msgid "workflow run" +msgstr "" + +#: documents/models.py:1580 +msgid "workflow runs" +msgstr "" + +#: documents/serialisers.py:145 +#, python-format +msgid "Invalid regular expression: %(error)s" +msgstr "" + +#: documents/serialisers.py:619 +msgid "Invalid color." +msgstr "" + +#: documents/serialisers.py:1805 +#, python-format +msgid "File type %(type)s not supported" +msgstr "" + +#: documents/serialisers.py:1849 +#, python-format +msgid "Custom field id must be an integer: %(id)s" +msgstr "" + +#: documents/serialisers.py:1856 +#, python-format +msgid "Custom field with id %(id)s does not exist" +msgstr "" + +#: 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 "" + +#: documents/serialisers.py:1878 +msgid "Some custom fields don't exist or were specified twice." +msgstr "" + +#: documents/serialisers.py:1993 +msgid "Invalid variable detected." +msgstr "" + +#: documents/templates/account/account_inactive.html:5 +msgid "Paperless-ngx account inactive" +msgstr "" + +#: documents/templates/account/account_inactive.html:9 +msgid "Account inactive." +msgstr "" + +#: documents/templates/account/account_inactive.html:14 +msgid "This account is inactive." +msgstr "" + +#: documents/templates/account/account_inactive.html:16 +msgid "Return to login" +msgstr "" + +#: documents/templates/account/email/base_message.txt:1 +#, python-format +msgid "Hello from %(site_name)s!" +msgstr "" + +#: documents/templates/account/email/base_message.txt:5 +#, python-format +msgid "Thank you for using %(site_name)s!\n" +"%(site_domain)s" +msgstr "" + +#: documents/templates/account/login.html:5 +msgid "Paperless-ngx sign in" +msgstr "" + +#: documents/templates/account/login.html:10 +msgid "Please sign in." +msgstr "" + +#: documents/templates/account/login.html:12 +#, python-format +msgid "Don't have an account yet? Sign up" +msgstr "" + +#: documents/templates/account/login.html:25 +#: documents/templates/account/signup.html:22 +#: documents/templates/socialaccount/signup.html:13 +msgid "Username" +msgstr "" + +#: documents/templates/account/login.html:26 +#: documents/templates/account/signup.html:24 +msgid "Password" +msgstr "" + +#: documents/templates/account/login.html:36 +#: documents/templates/mfa/authenticate.html:23 +msgid "Sign in" +msgstr "" + +#: documents/templates/account/login.html:40 +msgid "Forgot your password?" +msgstr "" + +#: documents/templates/account/login.html:51 +#: documents/templates/account/signup.html:57 +msgid "or sign in via" +msgstr "" + +#: documents/templates/account/password_reset.html:5 +msgid "Paperless-ngx reset password request" +msgstr "" + +#: documents/templates/account/password_reset.html:9 +msgid "Enter your email address below, and we'll email instructions for setting a new one." +msgstr "" + +#: documents/templates/account/password_reset.html:12 +msgid "An error occurred. Please try again." +msgstr "" + +#: documents/templates/account/password_reset.html:21 +msgid "Send me instructions!" +msgstr "" + +#: documents/templates/account/password_reset_done.html:5 +msgid "Paperless-ngx reset password sent" +msgstr "" + +#: documents/templates/account/password_reset_done.html:9 +msgid "Check your inbox." +msgstr "" + +#: documents/templates/account/password_reset_done.html:13 +msgid "We've emailed you instructions for setting your password. You should receive the email shortly!" +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:5 +msgid "Paperless-ngx reset password confirmation" +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:9 +msgid "Set a new password." +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:15 +msgid "request a new password reset" +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:17 +msgid "New Password" +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:18 +msgid "Confirm Password" +msgstr "" + +#: documents/templates/account/password_reset_from_key.html:28 +msgid "Change my password" +msgstr "" + +#: documents/templates/account/password_reset_from_key_done.html:5 +msgid "Paperless-ngx reset password complete" +msgstr "" + +#: documents/templates/account/password_reset_from_key_done.html:9 +msgid "Password reset complete." +msgstr "" + +#: documents/templates/account/password_reset_from_key_done.html:14 +#, python-format +msgid "Your new password has been set. You can now log in" +msgstr "" + +#: documents/templates/account/signup.html:5 +msgid "Paperless-ngx sign up" +msgstr "" + +#: documents/templates/account/signup.html:11 +#, python-format +msgid "Already have an account? Sign in" +msgstr "" + +#: documents/templates/account/signup.html:19 +msgid "Note: This is the first user account for this installation and will be granted superuser privileges." +msgstr "" + +#: documents/templates/account/signup.html:23 +#: documents/templates/socialaccount/signup.html:14 +msgid "Email (optional)" +msgstr "" + +#: documents/templates/account/signup.html:25 +msgid "Password (again)" +msgstr "" + +#: documents/templates/account/signup.html:43 +#: documents/templates/socialaccount/signup.html:27 +msgid "Sign up" +msgstr "" + +#: documents/templates/index.html:61 +msgid "Paperless-ngx is loading..." +msgstr "" + +#: documents/templates/index.html:62 +msgid "Still here?! Hmm, something might be wrong." +msgstr "" + +#: documents/templates/index.html:62 +msgid "Here's a link to the docs." +msgstr "" + +#: documents/templates/mfa/authenticate.html:7 +msgid "Paperless-ngx Two-Factor Authentication" +msgstr "" + +#: documents/templates/mfa/authenticate.html:12 +msgid "Your account is protected by two-factor authentication. Please enter an authenticator code:" +msgstr "" + +#: documents/templates/mfa/authenticate.html:17 +msgid "Code" +msgstr "" + +#: documents/templates/mfa/authenticate.html:24 +msgid "Cancel" +msgstr "" + +#: documents/templates/paperless-ngx/base.html:58 +msgid "Share link was not found." +msgstr "" + +#: documents/templates/paperless-ngx/base.html:62 +msgid "Share link has expired." +msgstr "" + +#: documents/templates/socialaccount/authentication_error.html:5 +#: documents/templates/socialaccount/login.html:5 +msgid "Paperless-ngx social account sign in" +msgstr "" + +#: documents/templates/socialaccount/authentication_error.html:10 +#, python-format +msgid "An error occurred while attempting to login via your social network account. Back to the login page" +msgstr "" + +#: documents/templates/socialaccount/login.html:10 +#, python-format +msgid "You are about to connect a new third-party account from %(provider)s." +msgstr "" + +#: documents/templates/socialaccount/login.html:13 +msgid "Continue" +msgstr "" + +#: documents/templates/socialaccount/signup.html:5 +msgid "Paperless-ngx social account sign up" +msgstr "" + +#: documents/templates/socialaccount/signup.html:10 +#, python-format +msgid "You are about to use your %(provider_name)s account to login." +msgstr "" + +#: documents/templates/socialaccount/signup.html:11 +msgid "As a final step, please complete the following form:" +msgstr "" + +#: documents/validators.py:24 +#, python-brace-format +msgid "Unable to parse URI {value}, missing scheme" +msgstr "" + +#: documents/validators.py:29 +#, python-brace-format +msgid "Unable to parse URI {value}, missing net location or path" +msgstr "" + +#: documents/validators.py:36 +msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}" +msgstr "" + +#: documents/validators.py:45 +#, python-brace-format +msgid "Unable to parse URI {value}" +msgstr "" + +#: paperless/apps.py:11 +msgid "Paperless" +msgstr "" + +#: paperless/models.py:26 +msgid "pdf" +msgstr "" + +#: paperless/models.py:27 +msgid "pdfa" +msgstr "" + +#: paperless/models.py:28 +msgid "pdfa-1" +msgstr "" + +#: paperless/models.py:29 +msgid "pdfa-2" +msgstr "" + +#: paperless/models.py:30 +msgid "pdfa-3" +msgstr "" + +#: paperless/models.py:39 +msgid "skip" +msgstr "" + +#: paperless/models.py:40 +msgid "redo" +msgstr "" + +#: paperless/models.py:41 +msgid "force" +msgstr "" + +#: paperless/models.py:42 +msgid "skip_noarchive" +msgstr "" + +#: paperless/models.py:50 +msgid "never" +msgstr "" + +#: paperless/models.py:51 +msgid "with_text" +msgstr "" + +#: paperless/models.py:52 +msgid "always" +msgstr "" + +#: paperless/models.py:60 +msgid "clean" +msgstr "" + +#: paperless/models.py:61 +msgid "clean-final" +msgstr "" + +#: paperless/models.py:62 +msgid "none" +msgstr "" + +#: paperless/models.py:70 +msgid "LeaveColorUnchanged" +msgstr "" + +#: paperless/models.py:71 +msgid "RGB" +msgstr "" + +#: paperless/models.py:72 +msgid "UseDeviceIndependentColor" +msgstr "" + +#: paperless/models.py:73 +msgid "Gray" +msgstr "" + +#: paperless/models.py:74 +msgid "CMYK" +msgstr "" + +#: paperless/models.py:83 +msgid "Sets the output PDF type" +msgstr "" + +#: paperless/models.py:95 +msgid "Do OCR from page 1 to this value" +msgstr "" + +#: paperless/models.py:101 +msgid "Do OCR using these languages" +msgstr "" + +#: paperless/models.py:108 +msgid "Sets the OCR mode" +msgstr "" + +#: paperless/models.py:116 +msgid "Controls the generation of an archive file" +msgstr "" + +#: paperless/models.py:124 +msgid "Sets image DPI fallback value" +msgstr "" + +#: paperless/models.py:131 +msgid "Controls the unpaper cleaning" +msgstr "" + +#: paperless/models.py:138 +msgid "Enables deskew" +msgstr "" + +#: paperless/models.py:141 +msgid "Enables page rotation" +msgstr "" + +#: paperless/models.py:146 +msgid "Sets the threshold for rotation of pages" +msgstr "" + +#: paperless/models.py:152 +msgid "Sets the maximum image size for decompression" +msgstr "" + +#: paperless/models.py:158 +msgid "Sets the Ghostscript color conversion strategy" +msgstr "" + +#: paperless/models.py:166 +msgid "Adds additional user arguments for OCRMyPDF" +msgstr "" + +#: paperless/models.py:175 +msgid "Application title" +msgstr "" + +#: paperless/models.py:182 +msgid "Application logo" +msgstr "" + +#: paperless/models.py:197 +msgid "Enables barcode scanning" +msgstr "" + +#: paperless/models.py:203 +msgid "Enables barcode TIFF support" +msgstr "" + +#: paperless/models.py:209 +msgid "Sets the barcode string" +msgstr "" + +#: paperless/models.py:217 +msgid "Retains split pages" +msgstr "" + +#: paperless/models.py:223 +msgid "Enables ASN barcode" +msgstr "" + +#: paperless/models.py:229 +msgid "Sets the ASN barcode prefix" +msgstr "" + +#: paperless/models.py:237 +msgid "Sets the barcode upscale factor" +msgstr "" + +#: paperless/models.py:244 +msgid "Sets the barcode DPI" +msgstr "" + +#: paperless/models.py:251 +msgid "Sets the maximum pages for barcode" +msgstr "" + +#: paperless/models.py:258 +msgid "Enables tag barcode" +msgstr "" + +#: paperless/models.py:264 +msgid "Sets the tag barcode mapping" +msgstr "" + +#: paperless/models.py:269 +msgid "paperless application settings" +msgstr "" + +#: paperless/settings.py:773 +msgid "English (US)" +msgstr "" + +#: paperless/settings.py:774 +msgid "Arabic" +msgstr "" + +#: paperless/settings.py:775 +msgid "Afrikaans" +msgstr "" + +#: paperless/settings.py:776 +msgid "Belarusian" +msgstr "" + +#: paperless/settings.py:777 +msgid "Bulgarian" +msgstr "" + +#: paperless/settings.py:778 +msgid "Catalan" +msgstr "" + +#: paperless/settings.py:779 +msgid "Czech" +msgstr "" + +#: paperless/settings.py:780 +msgid "Danish" +msgstr "" + +#: paperless/settings.py:781 +msgid "German" +msgstr "" + +#: paperless/settings.py:782 +msgid "Greek" +msgstr "" + +#: paperless/settings.py:783 +msgid "English (GB)" +msgstr "" + +#: paperless/settings.py:784 +msgid "Spanish" +msgstr "" + +#: paperless/settings.py:785 +msgid "Persian" +msgstr "" + +#: paperless/settings.py:786 +msgid "Finnish" +msgstr "" + +#: paperless/settings.py:787 +msgid "French" +msgstr "" + +#: paperless/settings.py:788 +msgid "Hungarian" +msgstr "" + +#: paperless/settings.py:789 +msgid "Italian" +msgstr "" + +#: paperless/settings.py:790 +msgid "Japanese" +msgstr "" + +#: paperless/settings.py:791 +msgid "Korean" +msgstr "" + +#: paperless/settings.py:792 +msgid "Luxembourgish" +msgstr "" + +#: paperless/settings.py:793 +msgid "Norwegian" +msgstr "" + +#: paperless/settings.py:794 +msgid "Dutch" +msgstr "" + +#: paperless/settings.py:795 +msgid "Polish" +msgstr "" + +#: paperless/settings.py:796 +msgid "Portuguese (Brazil)" +msgstr "" + +#: paperless/settings.py:797 +msgid "Portuguese" +msgstr "" + +#: paperless/settings.py:798 +msgid "Romanian" +msgstr "" + +#: paperless/settings.py:799 +msgid "Russian" +msgstr "" + +#: paperless/settings.py:800 +msgid "Slovak" +msgstr "" + +#: paperless/settings.py:801 +msgid "Slovenian" +msgstr "" + +#: paperless/settings.py:802 +msgid "Serbian" +msgstr "" + +#: paperless/settings.py:803 +msgid "Swedish" +msgstr "" + +#: paperless/settings.py:804 +msgid "Turkish" +msgstr "" + +#: paperless/settings.py:805 +msgid "Ukrainian" +msgstr "" + +#: paperless/settings.py:806 +msgid "Vietnamese" +msgstr "" + +#: paperless/settings.py:807 +msgid "Chinese Simplified" +msgstr "" + +#: paperless/settings.py:808 +msgid "Chinese Traditional" +msgstr "" + +#: paperless/urls.py:370 +msgid "Paperless-ngx administration" +msgstr "" + +#: paperless_mail/admin.py:39 +msgid "Authentication" +msgstr "" + +#: paperless_mail/admin.py:42 +msgid "Advanced settings" +msgstr "" + +#: paperless_mail/admin.py:58 +msgid "Filter" +msgstr "" + +#: paperless_mail/admin.py:61 +msgid "Paperless will only process mails that match ALL of the filters given below." +msgstr "" + +#: paperless_mail/admin.py:78 +msgid "Actions" +msgstr "" + +#: paperless_mail/admin.py:81 +msgid "The action applied to the mail. This action is only performed when the mail body or attachments were consumed from the mail." +msgstr "" + +#: paperless_mail/admin.py:89 +msgid "Metadata" +msgstr "" + +#: paperless_mail/admin.py:92 +msgid "Assign metadata to documents consumed from this rule automatically. If you do not assign tags, types or correspondents here, paperless will still process all matching rules that you have defined." +msgstr "" + +#: paperless_mail/apps.py:11 +msgid "Paperless mail" +msgstr "" + +#: paperless_mail/models.py:10 +msgid "mail account" +msgstr "" + +#: paperless_mail/models.py:11 +msgid "mail accounts" +msgstr "" + +#: paperless_mail/models.py:14 +msgid "No encryption" +msgstr "" + +#: paperless_mail/models.py:15 +msgid "Use SSL" +msgstr "" + +#: paperless_mail/models.py:16 +msgid "Use STARTTLS" +msgstr "" + +#: paperless_mail/models.py:19 +msgid "IMAP" +msgstr "" + +#: paperless_mail/models.py:20 +msgid "Gmail OAuth" +msgstr "" + +#: paperless_mail/models.py:21 +msgid "Outlook OAuth" +msgstr "" + +#: paperless_mail/models.py:25 +msgid "IMAP server" +msgstr "" + +#: paperless_mail/models.py:28 +msgid "IMAP port" +msgstr "" + +#: paperless_mail/models.py:32 +msgid "This is usually 143 for unencrypted and STARTTLS connections, and 993 for SSL connections." +msgstr "" + +#: paperless_mail/models.py:38 +msgid "IMAP security" +msgstr "" + +#: paperless_mail/models.py:43 +msgid "username" +msgstr "" + +#: paperless_mail/models.py:45 +msgid "password" +msgstr "" + +#: paperless_mail/models.py:47 +msgid "Is token authentication" +msgstr "" + +#: paperless_mail/models.py:50 +msgid "character set" +msgstr "" + +#: paperless_mail/models.py:54 +msgid "The character set to use when communicating with the mail server, such as 'UTF-8' or 'US-ASCII'." +msgstr "" + +#: paperless_mail/models.py:60 +msgid "account type" +msgstr "" + +#: paperless_mail/models.py:66 +msgid "refresh token" +msgstr "" + +#: paperless_mail/models.py:70 +msgid "The refresh token to use for token authentication e.g. with oauth2." +msgstr "" + +#: paperless_mail/models.py:79 +msgid "The expiration date of the refresh token. " +msgstr "" + +#: paperless_mail/models.py:89 +msgid "mail rule" +msgstr "" + +#: paperless_mail/models.py:90 +msgid "mail rules" +msgstr "" + +#: paperless_mail/models.py:104 paperless_mail/models.py:115 +msgid "Only process attachments." +msgstr "" + +#: paperless_mail/models.py:105 +msgid "Process full Mail (with embedded attachments in file) as .eml" +msgstr "" + +#: paperless_mail/models.py:109 +msgid "Process full Mail (with embedded attachments in file) as .eml + process attachments as separate documents" +msgstr "" + +#: paperless_mail/models.py:116 +msgid "Process all files, including 'inline' attachments." +msgstr "" + +#: paperless_mail/models.py:119 +msgid "System default" +msgstr "" + +#: paperless_mail/models.py:120 +msgid "Text, then HTML" +msgstr "" + +#: paperless_mail/models.py:121 +msgid "HTML, then text" +msgstr "" + +#: paperless_mail/models.py:122 +msgid "HTML only" +msgstr "" + +#: paperless_mail/models.py:123 +msgid "Text only" +msgstr "" + +#: paperless_mail/models.py:126 +msgid "Delete" +msgstr "" + +#: paperless_mail/models.py:127 +msgid "Move to specified folder" +msgstr "" + +#: paperless_mail/models.py:128 +msgid "Mark as read, don't process read mails" +msgstr "" + +#: paperless_mail/models.py:129 +msgid "Flag the mail, don't process flagged mails" +msgstr "" + +#: paperless_mail/models.py:130 +msgid "Tag the mail with specified tag, don't process tagged mails" +msgstr "" + +#: paperless_mail/models.py:133 +msgid "Use subject as title" +msgstr "" + +#: paperless_mail/models.py:134 +msgid "Use attachment filename as title" +msgstr "" + +#: paperless_mail/models.py:135 +msgid "Do not assign title from rule" +msgstr "" + +#: paperless_mail/models.py:138 +msgid "Do not assign a correspondent" +msgstr "" + +#: paperless_mail/models.py:139 +msgid "Use mail address" +msgstr "" + +#: paperless_mail/models.py:140 +msgid "Use name (or mail address if not available)" +msgstr "" + +#: paperless_mail/models.py:141 +msgid "Use correspondent selected below" +msgstr "" + +#: paperless_mail/models.py:151 +msgid "account" +msgstr "" + +#: paperless_mail/models.py:157 paperless_mail/models.py:318 +msgid "folder" +msgstr "" + +#: paperless_mail/models.py:161 +msgid "Subfolders must be separated by a delimiter, often a dot ('.') or slash ('/'), but it varies by mail server." +msgstr "" + +#: paperless_mail/models.py:167 +msgid "filter from" +msgstr "" + +#: paperless_mail/models.py:174 +msgid "filter to" +msgstr "" + +#: paperless_mail/models.py:181 +msgid "filter subject" +msgstr "" + +#: paperless_mail/models.py:188 +msgid "filter body" +msgstr "" + +#: paperless_mail/models.py:195 +msgid "filter attachment filename inclusive" +msgstr "" + +#: paperless_mail/models.py:207 +msgid "filter attachment filename exclusive" +msgstr "" + +#: paperless_mail/models.py:212 +msgid "Do not consume documents which entirely match this filename if specified. Wildcards such as *.pdf or *invoice* are allowed. Case insensitive." +msgstr "" + +#: paperless_mail/models.py:219 +msgid "maximum age" +msgstr "" + +#: paperless_mail/models.py:221 +msgid "Specified in days." +msgstr "" + +#: paperless_mail/models.py:225 +msgid "attachment type" +msgstr "" + +#: paperless_mail/models.py:229 +msgid "Inline attachments include embedded images, so it's best to combine this option with a filename filter." +msgstr "" + +#: paperless_mail/models.py:235 +msgid "consumption scope" +msgstr "" + +#: paperless_mail/models.py:241 +msgid "pdf layout" +msgstr "" + +#: paperless_mail/models.py:247 +msgid "action" +msgstr "" + +#: paperless_mail/models.py:253 +msgid "action parameter" +msgstr "" + +#: paperless_mail/models.py:258 +msgid "Additional parameter for the action selected above, i.e., the target folder of the move to folder action. Subfolders must be separated by dots." +msgstr "" + +#: paperless_mail/models.py:266 +msgid "assign title from" +msgstr "" + +#: paperless_mail/models.py:286 +msgid "assign correspondent from" +msgstr "" + +#: paperless_mail/models.py:300 +msgid "Assign the rule owner to documents" +msgstr "" + +#: paperless_mail/models.py:326 +msgid "uid" +msgstr "" + +#: paperless_mail/models.py:334 +msgid "subject" +msgstr "" + +#: paperless_mail/models.py:342 +msgid "received" +msgstr "" + +#: paperless_mail/models.py:349 +msgid "processed" +msgstr "" + +#: paperless_mail/models.py:355 +msgid "status" +msgstr "" + +#: paperless_mail/models.py:363 +msgid "error" +msgstr "" + diff --git a/src/locale/ms_MY/LC_MESSAGES/django.po b/src/locale/ms_MY/LC_MESSAGES/django.po index 8e48e2488..169a93962 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "" -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "" diff --git a/src/locale/nl_NL/LC_MESSAGES/django.po b/src/locale/nl_NL/LC_MESSAGES/django.po index 19d7c289c..633c2c3dc 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Waarde moet een geldige JSON zijn." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} is geen geldig aangepast veld." -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Aangepast veld niet gevonden" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ongeldige reguliere expressie: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Ongeldig kleur." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Bestandstype %(type)s niet ondersteund" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "Aangepast veld met id %(id)s bestaat niet" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "Aangepaste velden moeten een lijst van numerieke waarden zijn of een object mapping id naar waarden." -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "Sommige aangepaste velden bestaan niet of zijn dubbel opgegeven." -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Ongeldige variabele ontdekt." diff --git a/src/locale/no_NO/LC_MESSAGES/django.po b/src/locale/no_NO/LC_MESSAGES/django.po index 392b19619..4d6e0d80a 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Verdien må være en gyldig JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Egendefinert felt ble ikke funnet" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ugyldig regulært uttrykk: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Ugyldig farge." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Filtype %(type)s støttes ikke" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Ugyldig variabel oppdaget." diff --git a/src/locale/pl_PL/LC_MESSAGES/django.po b/src/locale/pl_PL/LC_MESSAGES/django.po index 051ad7680..947374c6a 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Wartość musi być prawidłowym JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Nieprawidłowe wyrażenie zapytania pola niestandardowego" -#: documents/filters.py:415 +#: documents/filters.py:424 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:445 msgid "Invalid logical operator {op!r}" msgstr "Nieprawidłowy operator logiczny {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Maksymalna liczba warunków zapytania została przekroczona." -#: documents/filters.py:515 +#: documents/filters.py:524 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:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Przekroczono maksymalną głębokość zagnieżdżenia." -#: documents/filters.py:845 +#: documents/filters.py:854 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" @@ -878,23 +878,23 @@ msgstr "posiada wskazanego nadawcę" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "nie posiada korespondenta(-ów)" #: documents/models.py:1117 msgid "has this storage path" -msgstr "" +msgstr "ma tę ścieżkę zapisu" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "nie ma tej ścieżki/ścieżek zapisu" #: documents/models.py:1128 msgid "filter custom field query" -msgstr "" +msgstr "filtruj zapytanie pola niestandardowego" #: documents/models.py:1131 msgid "JSON-encoded custom field query expression." -msgstr "" +msgstr "Niestandardowe wyrażenie zapytania pola zakodowane w formacie JSON." #: documents/models.py:1135 msgid "schedule offset days" @@ -1038,7 +1038,7 @@ msgstr "przypisz tytuł" #: documents/models.py:1302 msgid "Assign a document title, must be a Jinja2 template, see documentation." -msgstr "" +msgstr "Przypisz tytuł dokumentu, musi być szablonem Jinja2, zobacz dokumentację." #: documents/models.py:1310 paperless_mail/models.py:274 msgid "assign this tag" @@ -1208,39 +1208,39 @@ msgstr "uruchomienie przepływu pracy" msgid "workflow runs" msgstr "uruchomienia przepływu pracy" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Nieprawidłowe wyrażenie regularne: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Nieprawidłowy kolor." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Typ pliku %(type)s nie jest obsługiwany" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" -msgstr "" +msgstr "Identyfikator pola niestandardowego musi być liczbą całkowitą: %(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" -msgstr "" +msgstr "Pole niestandardowe z id %(id)s nie istnieje" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "Pola niestandardowe muszą być listą liczb całkowitych lub obiektem mapującym identyfikatory na wartości." -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." -msgstr "" +msgstr "Niektóre niestandardowe pola nie istnieją lub zostały określone dwukrotnie." -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Wykryto nieprawidłową zmienną." @@ -1473,21 +1473,21 @@ msgstr "Na koniec należy wypełnić poniższy formularz:" #: documents/validators.py:24 #, python-brace-format msgid "Unable to parse URI {value}, missing scheme" -msgstr "" +msgstr "Nie można przeanalizować URI {value}, brak schematu" #: documents/validators.py:29 #, python-brace-format msgid "Unable to parse URI {value}, missing net location or path" -msgstr "" +msgstr "Nie można przeanalizować URI {value}, brak lokalizacji sieciowej lub ścieżki" #: documents/validators.py:36 msgid "URI scheme '{parts.scheme}' is not allowed. Allowed schemes: {', '.join(allowed_schemes)}" -msgstr "" +msgstr "Schemat URI '{parts.scheme}' jest niedozwolony. Dozwolone schematy: {', '.join(allowed_schemes)}" #: documents/validators.py:45 #, python-brace-format msgid "Unable to parse URI {value}" -msgstr "" +msgstr "Nie można przetworzyć URI {value}" #: paperless/apps.py:11 msgid "Paperless" @@ -1815,7 +1815,7 @@ msgstr "Ukraiński" #: paperless/settings.py:806 msgid "Vietnamese" -msgstr "" +msgstr "Wietnamski" #: paperless/settings.py:807 msgid "Chinese Simplified" diff --git a/src/locale/pt_BR/LC_MESSAGES/django.po b/src/locale/pt_BR/LC_MESSAGES/django.po index 594d7d643..d5f47bd0f 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "O valor deve ser um JSON válido." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Expressão de consulta de campo personalizado inválida" -#: documents/filters.py:415 +#: documents/filters.py:424 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:445 msgid "Invalid logical operator {op!r}" msgstr "Operador lógico inválido {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 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:524 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:561 msgid "{data_type} does not support query expr {expr!r}." -msgstr "{data_type} não suporta a consulta 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Profundidade máxima do aninhamento excedida." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Campo personalizado não encontrado" @@ -450,7 +450,7 @@ msgstr "pesquisa de texto completo" #: documents/models.py:526 msgid "more like this" -msgstr "Mais como este" +msgstr "mais como este" #: documents/models.py:527 msgid "has tags in" @@ -859,11 +859,11 @@ msgstr "Possui estas etiquetas" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "possui toda(s) esta(s) etiqueta(s)" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "não possui esta(s) etiqueta(s)" #: documents/models.py:1087 msgid "has this document type" @@ -871,7 +871,7 @@ msgstr "Possui este tipo de documento" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "não possui este(s) tipo(s) de documento" #: documents/models.py:1102 msgid "has this correspondent" @@ -879,7 +879,7 @@ msgstr "Possui este correspondente" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "não possui este(s) correspondente(s)" #: documents/models.py:1117 msgid "has this storage path" @@ -887,15 +887,15 @@ msgstr "possui este caminho de armazenamento" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "não possui este(s) caminho(s) de armazenamento" #: 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 "Expressão de consulta de campo personalizado codificada em JSON." #: documents/models.py:1135 msgid "schedule offset days" @@ -1209,39 +1209,39 @@ msgstr "execução do fluxo de trabalho" msgid "workflow runs" msgstr "execução de fluxo de trabalho" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expressão regular inválida: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Cor inválida." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de arquivo %(type)s não suportado" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "O ID do campo personalizado deve ser um número inteiro: %(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "Não existe um campo personalizado com o ID %(id)s" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "Campos personalizados devem estar em uma lista de números inteiros ou em um objeto que relacione IDs a valores." -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "Campos personalizados inválidos ou duplicados." -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Variável inválida detectada." @@ -1270,7 +1270,7 @@ msgstr "Olá de %(site_name)s!" #, python-format msgid "Thank you for using %(site_name)s!\n" "%(site_domain)s" -msgstr "Obrigado por usar %(site_name)s!\n" +msgstr "Obrigado por usar %(site_name)s!\n" "%(site_domain)s" #: documents/templates/account/login.html:5 @@ -1313,7 +1313,7 @@ msgstr "ou conecte-se com" #: documents/templates/account/password_reset.html:5 msgid "Paperless-ngx reset password request" -msgstr "Redefinição de senha Paperless-ngx" +msgstr "Solicitação de redefinição de senha Paperless-ngx" #: documents/templates/account/password_reset.html:9 msgid "Enter your email address below, and we'll email instructions for setting a new one." diff --git a/src/locale/pt_PT/LC_MESSAGES/django.po b/src/locale/pt_PT/LC_MESSAGES/django.po index bdab2a4dc..4af8699b6 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "O valor deve ser JSON válido." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Expressão de consulta de campo personalizado inválido" -#: documents/filters.py:415 +#: documents/filters.py:424 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:445 msgid "Invalid logical operator {op!r}" msgstr "Operador lógico inválido {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 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:524 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:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Campo personalizado não encontrado" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expressão regular inválida: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Cor invalida." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Tipo de arquivo %(type)s não suportado" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Variável inválida detetada." diff --git a/src/locale/ro_RO/LC_MESSAGES/django.po b/src/locale/ro_RO/LC_MESSAGES/django.po index ad3aa7249..ff3752cde 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "" -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Expresie regulată invalida: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Culoare invalidă." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Tip de fișier %(type)s nesuportat" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "" diff --git a/src/locale/ru_RU/LC_MESSAGES/django.po b/src/locale/ru_RU/LC_MESSAGES/django.po index 5a8cd1858..fa4ced9c9 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Значение должно быть корректным JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Неверное выражение запроса пользовательского поля" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Недопустимый список выражений. Не может быть пустым." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Недопустимый логический оператор {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Превышено максимальное количество условий запроса." -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} не является допустимым пользовательским полем." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Превышена максимальная глубина вложения." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Пользовательское поле не найдено" @@ -758,7 +758,7 @@ msgstr "Выбрать" #: documents/models.py:795 msgid "Long Text" -msgstr "" +msgstr "Длинный текст" #: documents/models.py:807 msgid "data type" @@ -1208,39 +1208,39 @@ msgstr "запуск рабочего процесса" msgid "workflow runs" msgstr "запуски рабочего процесса" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "неверное регулярное выражение: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Неверный цвет." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Тип файла %(type)s не поддерживается" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Обнаружена неверная переменная." diff --git a/src/locale/sk_SK/LC_MESSAGES/django.po b/src/locale/sk_SK/LC_MESSAGES/django.po index 804fbb5a1..eaee3a3e9 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Hodnota musí byť vo validnom formáte JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Neplatný výraz požiadavky na vlastné pole" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Neplatný zoznam výrazov. Nesmie byť prázdny." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Neplatný logický operátor {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 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:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nie je platné vlastné pole." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 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:854 msgid "Custom field not found" msgstr "Vlastné pole nebolo nájdené" @@ -1208,39 +1208,39 @@ msgstr "spustenie pracovného postupu" msgid "workflow runs" msgstr "spustenia pracovných postupov" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Neplatný regulárny výraz: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Neplatná farba." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Typ súboru %(type)s nie je podporovaný" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Zistená neplatná premenná." diff --git a/src/locale/sl_SI/LC_MESSAGES/django.po b/src/locale/sl_SI/LC_MESSAGES/django.po index 5581fbdac..b8d9780ab 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Vrednost mora biti veljaven JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Neveljaven izraz poizvedbe po polju po meri" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Neveljaven seznam izrazov. Ne sme biti prazen." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Neveljaven logični operator {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 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:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} ni veljavno polje po meri." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 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:854 msgid "Custom field not found" msgstr "Polja po meri ni bilo mogoče najti" @@ -1208,39 +1208,39 @@ msgstr "izvajanje poteka dela" msgid "workflow runs" msgstr "poteka dela" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Neveljaven splošen izraz: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Napačna barva." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s ni podprta" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "ID polja po meri mora biti celo število: %(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "Polje po meri z ID-jem %(id)s ne obstaja" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "Polja po meri morajo biti seznam celih števil ali objekt, ki preslika ID-je v vrednosti." -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "Nekatera polja po meri ne obstajajo ali pa so bila navedena dvakrat." -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Zaznani neveljavni znaki." diff --git a/src/locale/sr_CS/LC_MESSAGES/django.po b/src/locale/sr_CS/LC_MESSAGES/django.po index 0c2131460..7d156b01b 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Vrednost mora da bude važeći JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Nevažeći izraz upita prilagođen polja" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Nevažeća lista izraza. Ne sme biti prazna." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Nevažeći logični operator {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Premašen je maksimalni broj uslova u upitu." -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} nije validno prilagođeno polje." -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Premašena je maksimalna dubina grananja." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Nije pronađeno prilagođeno polje" @@ -1208,39 +1208,39 @@ msgstr "pokretanje radnog toka" msgid "workflow runs" msgstr "pokretanje tokova rada" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Nevažeći regularni izraz: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Nevažeća boja." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Vrsta datoteke %(type)s nije podržana" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "ID prilagođenog polja mora biti ceo broj: %(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "Prilagođeno polje sa ID-em %(id)s ne postoji" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "Prilagođena polja moraju biti lista celih brojeva ili objekat koji mapira identifikatore na vrednosti." -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "Neka prilagođena polja ne postoje ili su navedena dva puta." -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Otkrivena je nevažeća promenljiva." diff --git a/src/locale/sv_SE/LC_MESSAGES/django.po b/src/locale/sv_SE/LC_MESSAGES/django.po index 0d8cda868..3585184eb 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Värdet måste vara giltigt JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Ogiltigt sökordsuttryck för anpassade fält" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Ogiltig uttryckslista. Får inte vara tom." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Ogiltig logisk operator {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "Maximalt antal frågevillkor överskrids." -#: documents/filters.py:515 +#: documents/filters.py:524 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:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "Maximalt antal nästlade nivåer överskrids." -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Anpassat fält hittades inte" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Ogiltigt reguljärt uttryck: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Ogiltig färg." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Filtypen %(type)s stöds inte" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Ogiltig variabel upptäckt." diff --git a/src/locale/th_TH/LC_MESSAGES/django.po b/src/locale/th_TH/LC_MESSAGES/django.po index 6d42aaec3..d1a3323a8 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "ค่า ต้องอยู่ในรูปแบบ JSON ที่ถูกต้อง" -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "รูปแบบการค้นหาฟิลด์ที่กำหนดเองไม่ถูกต้อง" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "รายการคำสั่งไม่ถูกต้อง ต้องไม่เว้นว่าง" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "ตัวดำเนินการเชิงตรรกะ {op!r} ไม่ถูกต้อง" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "จำนวนเงื่อนไขในการค้นหาเกินกำหนด" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} ไม่ใช่ฟิลด์ที่กำหนดเองที่ถูกต้อง" -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "จำนวนการซ้อนเงื่อนไขสูงสุดเกินขีดจำกัด" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "ไม่พบฟิลด์ที่กำหนด" @@ -942,7 +942,7 @@ msgstr "" #: documents/models.py:1187 msgid "email subject" -msgstr "" +msgstr "หัวเรื่องของอีเมล" #: documents/models.py:1191 msgid "The subject of the email, can include some placeholders, see documentation." @@ -950,7 +950,7 @@ msgstr "" #: documents/models.py:1197 msgid "email body" -msgstr "" +msgstr "เนื้อหาอีเมล" #: documents/models.py:1200 msgid "The body (message) of the email, can include some placeholders, see documentation." @@ -958,7 +958,7 @@ msgstr "" #: documents/models.py:1206 msgid "emails to" -msgstr "" +msgstr "อีเมล์ถึง" #: documents/models.py:1209 msgid "The destination email addresses, comma separated." @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Regular expression ไม่ถูกต้อง : %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "สีไม่ถูกต้อง" -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "ไม่รองรับไฟล์ประเภท %(type)s" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "ตรวจพบตัวแปรไม่ถูกต้อง" diff --git a/src/locale/tr_TR/LC_MESSAGES/django.po b/src/locale/tr_TR/LC_MESSAGES/django.po index df2de3cd9..83412ea93 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Değer geçerli bir JSON olmalıdır." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "Geçersiz özel alan sorgu ifadesi" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "Geçersiz ifade listesi. Boş olmamalıdır." -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "Geçersiz mantıksal işleç {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "En çok sorgu koşulu sayısı aşıldı." -#: documents/filters.py:515 +#: documents/filters.py:524 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:561 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:669 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:854 msgid "Custom field not found" msgstr "Özel alan bulunamadı" @@ -1208,39 +1208,39 @@ msgstr "iş akışı çalıştırma" msgid "workflow runs" msgstr "iş akışı çalıştırma" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Hatalı düzenli ifade: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Geçersiz renk." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Dosya türü %(type)s desteklenmiyor" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Geçersiz değişken algılandı." diff --git a/src/locale/uk_UA/LC_MESSAGES/django.po b/src/locale/uk_UA/LC_MESSAGES/django.po index ac52c8ee9..8aea4838c 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." -msgstr "" +msgstr "Значення має бути коректним JSON." -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "" -#: documents/filters.py:552 +#: documents/filters.py:561 msgid "{data_type} does not support query expr {expr!r}." msgstr "" -#: documents/filters.py:660 documents/models.py:135 +#: documents/filters.py:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "" @@ -1208,39 +1208,39 @@ msgstr "" msgid "workflow runs" msgstr "" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Неправильний регулярний вираз: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Неправильний колір." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Тип файлу %(type)s не підтримується" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Виявлено неправильну змінну." diff --git a/src/locale/vi_VN/LC_MESSAGES/django.po b/src/locale/vi_VN/LC_MESSAGES/django.po index d9b775a71..160ccc6d2 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "Giá trị phải là JSON hợp lệ." -#: documents/filters.py:405 +#: documents/filters.py:414 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:424 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:445 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:459 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:524 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:561 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:669 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:854 msgid "Custom field not found" msgstr "Không tìm thấy trường tùy chỉnh" @@ -136,7 +136,7 @@ msgstr "thẻ" #: documents/models.py:123 msgid "Cannot set itself as parent." -msgstr "" +msgstr "Không thể tự đặt thành thư mục gốc" #: documents/models.py:125 msgid "Cannot set parent to a descendant." @@ -758,7 +758,7 @@ msgstr "Chọn" #: documents/models.py:795 msgid "Long Text" -msgstr "" +msgstr "Văn bản dài" #: documents/models.py:807 msgid "data type" @@ -858,11 +858,11 @@ msgstr "có những thẻ này" #: documents/models.py:1072 msgid "has all of these tag(s)" -msgstr "" +msgstr "có tất cả thẻ này" #: documents/models.py:1079 msgid "does not have these tag(s)" -msgstr "" +msgstr "không có các thẻ này" #: documents/models.py:1087 msgid "has this document type" @@ -870,7 +870,7 @@ msgstr "có loại tài liệu này" #: documents/models.py:1094 msgid "does not have these document type(s)" -msgstr "" +msgstr "không có các loại tài liệu này" #: documents/models.py:1102 msgid "has this correspondent" @@ -878,15 +878,15 @@ msgstr "có phóng viên này" #: documents/models.py:1109 msgid "does not have these correspondent(s)" -msgstr "" +msgstr "không có các biên tập viên này" #: documents/models.py:1117 msgid "has this storage path" -msgstr "" +msgstr "có đường dẫn lưu trữ này" #: documents/models.py:1124 msgid "does not have these storage path(s)" -msgstr "" +msgstr "không có các đường dẫn lưu trữ này" #: documents/models.py:1128 msgid "filter custom field query" @@ -1208,39 +1208,39 @@ msgstr "dòng công việc chạy" msgid "workflow runs" msgstr "dòng công việc chạy" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "Biểu thức chính quy không hợp lệ: %(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "Màu không hợp lệ." -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "Loại tập tin %(type)s không được hỗ trợ" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "Đã phát hiện biến số không hợp lệ." diff --git a/src/locale/zh_CN/LC_MESSAGES/django.po b/src/locale/zh_CN/LC_MESSAGES/django.po index 99b5be8e4..88977f806 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "值必须是有效的 JSON 格式。" -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "无效的自定义字段查询表达式" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "无效的表达式列表。必须不为空。" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "无效的逻辑运算符 {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "超出查询条件的最大数量。" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} 不是一个有效的自定义字段。" -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "超出最大嵌套深度。" -#: documents/filters.py:845 +#: documents/filters.py:854 msgid "Custom field not found" msgstr "Custom field not found" @@ -1208,39 +1208,39 @@ msgstr "工作流运行" msgid "workflow runs" msgstr "工作流运行" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "无效的正则表达式:%(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "无效的颜色" -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "不支持文件类型 %(type)s" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "自定义字段 id 必须是数字:%(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "自定义字段 id %(id)s 不存在" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "自定义字段必须为整数列表,或是一个将ID映射到值的对象。" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "部分自定义字段不存在或重复指定。" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "检测到无效变量。" diff --git a/src/locale/zh_TW/LC_MESSAGES/django.po b/src/locale/zh_TW/LC_MESSAGES/django.po index 9fc3a3234..596bd8223 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-21 05:44+0000\n" -"PO-Revision-Date: 2025-10-21 05:45\n" +"POT-Creation-Date: 2025-11-14 16:09+0000\n" +"PO-Revision-Date: 2025-11-14 16:11\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:395 msgid "Value must be valid JSON." msgstr "參數值必須是有效的 JSON。" -#: documents/filters.py:405 +#: documents/filters.py:414 msgid "Invalid custom field query expression" msgstr "無效的自訂欄位查詢表達式" -#: documents/filters.py:415 +#: documents/filters.py:424 msgid "Invalid expression list. Must be nonempty." msgstr "無效的表達式列表,不能為空。" -#: documents/filters.py:436 +#: documents/filters.py:445 msgid "Invalid logical operator {op!r}" msgstr "無效的邏輯運算符 {op!r}" -#: documents/filters.py:450 +#: documents/filters.py:459 msgid "Maximum number of query conditions exceeded." msgstr "超過查詢條件的最大數量。" -#: documents/filters.py:515 +#: documents/filters.py:524 msgid "{name!r} is not a valid custom field." msgstr "{name!r} 不是有效的自訂欄位。" -#: documents/filters.py:552 +#: documents/filters.py:561 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:669 documents/models.py:135 msgid "Maximum nesting depth exceeded." msgstr "超過最大巢狀深度。" -#: documents/filters.py:845 +#: documents/filters.py:854 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" @@ -1208,39 +1208,39 @@ msgstr "執行工作流程" msgid "workflow runs" msgstr "執行工作流程" -#: documents/serialisers.py:143 +#: documents/serialisers.py:145 #, python-format msgid "Invalid regular expression: %(error)s" msgstr "無效的正則表達式:%(error)s" -#: documents/serialisers.py:609 +#: documents/serialisers.py:619 msgid "Invalid color." msgstr "無效的顏色。" -#: documents/serialisers.py:1795 +#: documents/serialisers.py:1805 #, python-format msgid "File type %(type)s not supported" msgstr "不支援檔案類型 %(type)s" -#: documents/serialisers.py:1839 +#: documents/serialisers.py:1849 #, python-format msgid "Custom field id must be an integer: %(id)s" msgstr "自定欄位 ID 必須是整數:%(id)s" -#: documents/serialisers.py:1846 +#: documents/serialisers.py:1856 #, python-format msgid "Custom field with id %(id)s does not exist" msgstr "自定欄位 ID %(id)s 不存在" -#: documents/serialisers.py:1863 documents/serialisers.py:1873 +#: 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 "自定欄位必須為整數列表,或是將 ID 對應到數值的物件。" -#: documents/serialisers.py:1868 +#: documents/serialisers.py:1878 msgid "Some custom fields don't exist or were specified twice." msgstr "部分自定欄位不存在或重復指定。" -#: documents/serialisers.py:1983 +#: documents/serialisers.py:1993 msgid "Invalid variable detected." msgstr "偵測到無效的變數。" diff --git a/src/paperless/serialisers.py b/src/paperless/serialisers.py index 754a3c594..97b84fd14 100644 --- a/src/paperless/serialisers.py +++ b/src/paperless/serialisers.py @@ -9,6 +9,7 @@ from allauth.socialaccount.models import SocialApp from django.contrib.auth.models import Group from django.contrib.auth.models import Permission from django.contrib.auth.models import User +from django.contrib.auth.password_validation import validate_password from rest_framework import serializers from rest_framework.authtoken.serializers import AuthTokenSerializer @@ -19,6 +20,23 @@ from paperless_mail.serialisers import ObfuscatedPasswordField logger = logging.getLogger("paperless.settings") +class PasswordValidationMixin: + def _has_real_password(self, value: str | None) -> bool: + return bool(value) and value.replace("*", "") != "" + + def validate_password(self, value: str) -> str: + if not self._has_real_password(value): + return value + + request = self.context.get("request") if hasattr(self, "context") else None + user = self.instance or ( + request.user if request and hasattr(request, "user") else None + ) + validate_password(value, user) # raise ValidationError if invalid + + return value + + class PaperlessAuthTokenSerializer(AuthTokenSerializer): code = serializers.CharField( label="MFA Code", @@ -49,7 +67,7 @@ class PaperlessAuthTokenSerializer(AuthTokenSerializer): return attrs -class UserSerializer(serializers.ModelSerializer): +class UserSerializer(PasswordValidationMixin, serializers.ModelSerializer): password = ObfuscatedPasswordField(required=False) user_permissions = serializers.SlugRelatedField( many=True, @@ -87,11 +105,11 @@ class UserSerializer(serializers.ModelSerializer): return obj.get_group_permissions() def update(self, instance, validated_data): - if "password" in validated_data: - if len(validated_data.get("password").replace("*", "")) > 0: - instance.set_password(validated_data.get("password")) - instance.save() - validated_data.pop("password") + password = validated_data.pop("password", None) + if self._has_real_password(password): + instance.set_password(password) + instance.save() + super().update(instance, validated_data) return instance @@ -102,12 +120,7 @@ class UserSerializer(serializers.ModelSerializer): user_permissions = None if "user_permissions" in validated_data: user_permissions = validated_data.pop("user_permissions") - password = None - if ( - "password" in validated_data - and len(validated_data.get("password").replace("*", "")) > 0 - ): - password = validated_data.pop("password") + password = validated_data.pop("password", None) user = User.objects.create(**validated_data) # set groups if groups: @@ -116,7 +129,7 @@ class UserSerializer(serializers.ModelSerializer): if user_permissions: user.user_permissions.set(user_permissions) # set password - if password: + if self._has_real_password(password): user.set_password(password) user.save() return user @@ -156,7 +169,7 @@ class SocialAccountSerializer(serializers.ModelSerializer): return "Unknown App" -class ProfileSerializer(serializers.ModelSerializer): +class ProfileSerializer(PasswordValidationMixin, serializers.ModelSerializer): email = serializers.EmailField(allow_blank=True, required=False) password = ObfuscatedPasswordField(required=False, allow_null=False) auth_token = serializers.SlugRelatedField(read_only=True, slug_field="key") diff --git a/src/paperless/version.py b/src/paperless/version.py index a43667145..5657b929a 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, 0) +__version__: Final[tuple[int, int, int]] = (2, 19, 6) # Version string like X.Y.Z __full_version_str__: Final[str] = ".".join(map(str, __version__)) # Version string like X.Y diff --git a/src/paperless/views.py b/src/paperless/views.py index fc5bb5463..e79c0e668 100644 --- a/src/paperless/views.py +++ b/src/paperless/views.py @@ -125,6 +125,10 @@ class UserViewSet(ModelViewSet): def update(self, request, *args, **kwargs): user_to_update: User = self.get_object() + if not request.user.is_superuser and user_to_update.is_superuser: + return HttpResponseForbidden( + "Superusers can only be modified by other superusers", + ) if ( not request.user.is_superuser and request.data.get("is_superuser") is not None @@ -193,10 +197,10 @@ class ProfileView(GenericAPIView): serializer.is_valid(raise_exception=True) user = self.request.user if hasattr(self.request, "user") else None - if len(serializer.validated_data.get("password").replace("*", "")) > 0: - user.set_password(serializer.validated_data.get("password")) + password = serializer.validated_data.pop("password", None) + if password and password.replace("*", ""): + user.set_password(password) user.save() - serializer.validated_data.pop("password") for key, value in serializer.validated_data.items(): setattr(user, key, value) diff --git a/src/paperless_mail/oauth.py b/src/paperless_mail/oauth.py index f2050451b..08b5d9647 100644 --- a/src/paperless_mail/oauth.py +++ b/src/paperless_mail/oauth.py @@ -103,6 +103,9 @@ class PaperlessMailOAuth2Manager: refresh_token=account.refresh_token, ), ) + if "refresh_token" in result: + # Outlook returns a new refresh token on refresh, Gmail does not + account.refresh_token = result["refresh_token"] account.password = result["access_token"] account.expiration = timezone.now() + timedelta( seconds=result["expires_in"], diff --git a/src/paperless_mail/tests/samples/html.eml b/src/paperless_mail/tests/samples/html.eml index 97747ceab..aaac68cc4 100644 --- a/src/paperless_mail/tests/samples/html.eml +++ b/src/paperless_mail/tests/samples/html.eml @@ -55,7 +55,7 @@ Content-Transfer-Encoding: 7bit

Some Text

Has to be rewritten to work.. - This image should not be shown. + This image should not be shown.

and an embedded image.
diff --git a/src/paperless_mail/tests/samples/sample.html b/src/paperless_mail/tests/samples/sample.html index 584cd5d64..c1fd52d43 100644 --- a/src/paperless_mail/tests/samples/sample.html +++ b/src/paperless_mail/tests/samples/sample.html @@ -6,7 +6,7 @@

Some Text

Has to be rewritten to work.. - This image should not be shown. + This image should not be shown.

and an embedded image.
diff --git a/src/paperless_mail/tests/test_parsers_live.py b/src/paperless_mail/tests/test_parsers_live.py index e1febb1e5..fd052cc26 100644 --- a/src/paperless_mail/tests/test_parsers_live.py +++ b/src/paperless_mail/tests/test_parsers_live.py @@ -67,10 +67,10 @@ class TestUrlCanary: whether this image stays online forever, so here we check if we can detect if is not available anymore. """ + resp = httpx.get( + "https://docs.paperless-ngx.com/assets/non-existent.png", + ) with pytest.raises(httpx.HTTPStatusError) as exec_info: - resp = httpx.get( - "https://upload.wikimedia.org/wikipedia/en/f/f7/nonexistent.png", - ) resp.raise_for_status() assert exec_info.value.response.status_code == httpx.codes.NOT_FOUND @@ -90,7 +90,9 @@ class TestUrlCanary: """ # Now check the URL used in samples/sample.html - resp = httpx.get("https://upload.wikimedia.org/wikipedia/en/f/f7/RickRoll.png") + resp = httpx.get( + "https://docs.paperless-ngx.com/assets/logo_full_white.svg", + ) resp.raise_for_status() diff --git a/uv.lock b/uv.lock index 74b2f59f4..17d7d9f30 100644 --- a/uv.lock +++ b/uv.lock @@ -676,15 +676,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]] @@ -2115,7 +2115,7 @@ wheels = [ [[package]] name = "paperless-ngx" -version = "2.19.0" +version = "2.19.6" source = { virtual = "." } dependencies = [ { name = "babel", marker = "sys_platform == 'darwin' or sys_platform == 'linux'" }, @@ -2262,7 +2262,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" },